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


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 (2):
  flexible_rxd: unify common test content
  flexible_rxd: add mpls test cases

 tests/TestSuite_flexible_rxd.py | 255 +++++++----------
 tests/flexible_common.py        | 482 ++++++++++++++++++++++++++++++++
 2 files changed, 578 insertions(+), 159 deletions(-)
 create mode 100644 tests/flexible_common.py

-- 
2.21.0


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

* [dts] [PATCH V5 1/2] flexible_rxd: unify common test content
  2020-11-03  2:04 [dts] [PATCH V5 0/2] flexible_rxd: add test cases for iavf/mpls yufengmx
@ 2020-11-03  2:04 ` yufengmx
  2020-11-03  2:04 ` [dts] [PATCH V5 2/2] flexible_rxd: add mpls test cases yufengmx
  2020-11-03  2:14 ` [dts] [PATCH V5 0/2] flexible_rxd: add test cases for iavf/mpls Mo, YufengX
  2 siblings, 0 replies; 5+ messages in thread
From: yufengmx @ 2020-11-03  2:04 UTC (permalink / raw)
  To: dts; +Cc: yufengmx


unify common test content.

Signed-off-by: yufengmx <yufengx.mo@intel.com>
---
 tests/flexible_common.py | 482 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 482 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..9546680
--- /dev/null
+++ b/tests/flexible_common.py
@@ -0,0 +1,482 @@
+# 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=''):
+        nb_core = 2
+        num = 4 if self.nic == 'foxville' or self.__is_iavf else 32
+        # port option
+        port_option = (
+            '{queue} '
+            '--portmask=0x1 '
+            '--nb-cores={nb_core}').format(**{
+                'queue': '--rxq={0} --txq={0} '.format(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, num=4):
+        """
+        start testpmd
+        """
+        param_type = 'proto_xtr'
+        # port option
+        port_option = self.__get_port_option(flex_opt)
+        # 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] 5+ messages in thread

* [dts] [PATCH V5 2/2] flexible_rxd: add mpls test cases
  2020-11-03  2:04 [dts] [PATCH V5 0/2] flexible_rxd: add test cases for iavf/mpls yufengmx
  2020-11-03  2:04 ` [dts] [PATCH V5 1/2] flexible_rxd: unify common test content yufengmx
@ 2020-11-03  2:04 ` yufengmx
  2020-11-05  2:46   ` Ma, LihongX
  2020-11-03  2:14 ` [dts] [PATCH V5 0/2] flexible_rxd: add test cases for iavf/mpls Mo, YufengX
  2 siblings, 1 reply; 5+ messages in thread
From: yufengmx @ 2020-11-03  2:04 UTC (permalink / raw)
  To: dts; +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 b69d8bb..592166c 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 (ol_flags & PKT_RX_TIMESTAMP)/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_LIBRTE_IXGBE_PMD')/i\if dpdk_conf.has('RTE_LIBRTE_ICE_PMD')\n\tdeps += 'pmd_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] 5+ messages in thread

* Re: [dts] [PATCH V5 0/2] flexible_rxd: add test cases for iavf/mpls
  2020-11-03  2:04 [dts] [PATCH V5 0/2] flexible_rxd: add test cases for iavf/mpls yufengmx
  2020-11-03  2:04 ` [dts] [PATCH V5 1/2] flexible_rxd: unify common test content yufengmx
  2020-11-03  2:04 ` [dts] [PATCH V5 2/2] flexible_rxd: add mpls test cases yufengmx
@ 2020-11-03  2:14 ` Mo, YufengX
  2 siblings, 0 replies; 5+ messages in thread
From: Mo, YufengX @ 2020-11-03  2:14 UTC (permalink / raw)
  To: dts

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

Tested by Mo, YufengX <yufengx.mo@intel.com>


> -----Original Message-----
> From: Mo, YufengX
> Sent: Tuesday, November 3, 2020 10:04 AM
> To: dts@dpdk.org
> Cc: Mo, YufengX <yufengx.mo@intel.com>
> Subject: [dts][PATCH V5 0/2] flexible_rxd: add test cases for iavf/mpls


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


TEST SUITE : TestFlexibleRxd
03/11/2020 10:15:24                            dts: NIC :        columbiaville_25g01
03/11/2020 10:15:24              dut.10.67.xxx.xxx: 
03/11/2020 10:15:24                         tester: 
03/11/2020 10:16:06              dut.10.67.xxx.xxx: sed -i 's/CONFIG_RTE_EAL_IGB_UIO=n/CONFIG_RTE_EAL_IGB_UIO=y/g' config/common_base
03/11/2020 10:16:06              dut.10.67.xxx.xxx: sed: can't read config/common_base: No such file or directory
03/11/2020 10:16:06              dut.10.67.xxx.xxx: rm -rf x86_64-native-linuxapp-gcc
03/11/2020 10:16:06              dut.10.67.xxx.xxx: 
03/11/2020 10:16:06              dut.10.67.xxx.xxx: CC=gcc meson --werror -Denable_kmods=True  -Dlibdir=lib  --default-library=static x86_64-native-linuxapp-gcc
03/11/2020 10:16:12              dut.10.67.xxx.xxx: The Meson build system
Version: 0.54.2
Source dir: /home/myf/dpdk_works/dpdk_2011-rc1_vf
Build dir: /home/myf/dpdk_works/dpdk_2011-rc1_vf/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES (/bin/cat)
Project name: DPDK
Project version: 20.11.0-rc1
Using 'CC' from environment with value: 'gcc'
Using 'CC' from environment with value: 'gcc'
C compiler for the host machine: gcc (gcc 7.5.0 "gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0")
C linker for the host machine: gcc ld.bfd 2.30
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES (/usr/bin/pkg-config)
Program gen-pmdinfo-cfile.sh found: YES (/home/myf/dpdk_works/dpdk_2011-rc1_vf/buildtools/gen-pmdinfo-cfile.sh)
Program list-dir-globs.py found: YES (/home/myf/dpdk_works/dpdk_2011-rc1_vf/buildtools/list-dir-globs.py)
Program check-symbols.sh found: YES (/home/myf/dpdk_works/dpdk_2011-rc1_vf/buildtools/check-symbols.sh)
Program options-ibverbs-static.sh found: YES (/home/myf/dpdk_works/dpdk_2011-rc1_vf/buildtools/options-ibverbs-static.sh)
Program binutils-avx512-check.sh found: YES (/home/myf/dpdk_works/dpdk_2011-rc1_vf/buildtools/binutils-avx512-check.sh)
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES (/bin/cat)
Program ../buildtools/symlink-drivers-solibs.sh found: YES (/bin/sh /home/myf/dpdk_works/dpdk_2011-rc1_vf/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.28)
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency libbsd found: NO (tried pkgconfig and cmake)
Run-time dependency libpcap found: NO (tried pkgconfig)
Library pcap found: YES
Has header "pcap.h" with dependency -lpcap: 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: NO 
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: NO 
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: NO 
Message: lib/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Run-time dependency jansson found: NO (tried pkgconfig and cmake)
Message: lib/librte_metrics: Defining dependency "metrics"
Message: lib/librte_hash: Defining dependency "hash"
Message: lib/librte_timer: Defining dependency "timer"
Fetching value of define "__AVX2__" : 1 (cached)
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"
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 
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 
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES 
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 
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 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES 
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 
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 
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES 
Message: drivers/net/fm10k: Defining dependency "net_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES 
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES 
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 
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES 
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)
Message: drivers/net/iavf: Defining dependency "net_iavf"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES 
Fetching value of define "__AVX2__" : 1 (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 
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES 
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 
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 
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 
Message: drivers/net/pfe: Defining dependency "net_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES 
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES 
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES 
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES 
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES 
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES 
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES 
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES 
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES 
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 
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 
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES 
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES 
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES 
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO 
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES 
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 
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 
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 
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 
Message: drivers/net/thunderx: Defining dependency "net_thunderx"
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 
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 
Compiler for C supports arguments -mavx512vl: YES 
Compiler for C supports arguments -mavx512bw: YES 
Message: drivers/net/virtio: Defining dependency "net_virtio"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES 
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 
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 
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 
Message: Disabling mlx5 [drivers/regex/mlx5]: missing internal dependency "common_mlx5"
Library librxp_compiler found: NO
Message: drivers/regex/octeontx2: Defining dependency "regex_octeontx2_regex"
Message: drivers/vdpa/ifc: Defining dependency "vdpa_ifc"
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 
Message: Disabling mlx5 [drivers/vdpa/mlx5]: missing internal dependency "common_mlx5"
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 
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 
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES (/home/myf/dpdk_works/dpdk_2011-rc1_vf/app/test/get-coremask.sh)
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
Configuring rte_build_config.h using configuration
Message: 
=================
Libraries Enabled
=================

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

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

common:
	cpt, dpaax, iavf, octeontx, octeontx2, sfc_efx, qat, 
bus:
	dpaa, fslmc, ifpga, pci, vdev, vmbus, 
mempool:
	bucket, dpaa, dpaa2, octeontx, octeontx2, ring, stack, 
net:
	af_packet, ark, atlantic, avp, axgbe, bond, bnx2x, bnxt, 
	cxgbe, dpaa, dpaa2, e1000, ena, enetc, enic, failsafe, 
	fm10k, i40e, hinic, hns3, iavf, ice, igc, ixgbe, 
	kni, liquidio, memif, netvsc, nfp, null, octeontx, octeontx2, 
	pcap, pfe, qede, ring, sfc, softnic, tap, thunderx, 
	vdev_netvsc, vhost, virtio, vmxnet3, 
raw:
	dpaa2_cmdif, dpaa2_qdma, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
crypto:
	bcmfs, caam_jr, dpaa_sec, dpaa2_sec, nitrox, null, octeontx, octeontx2, 
	scheduler, virtio, 
compress:
	octeontx, zlib, 
regex:
	octeontx2_regex, 
vdpa:
	ifc, 
event:
	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: 972

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

Change verbose level from 0 to 1
03/11/2020 10:17:07              dut.10.67.xxx.xxx: set fwd io
03/11/2020 10:17:08              dut.10.67.xxx.xxx: 

Set io packet forwarding mode
03/11/2020 10:17:08              dut.10.67.xxx.xxx: set promisc all off
03/11/2020 10:17:08              dut.10.67.xxx.xxx: 
03/11/2020 10:17:08              dut.10.67.xxx.xxx: clear port stats all
03/11/2020 10:17:08              dut.10.67.xxx.xxx: 

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
03/11/2020 10:17:08              dut.10.67.xxx.xxx: start
03/11/2020 10:17:08              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:17:08              dut.10.67.xxx.xxx: flow create 0 ingress pattern eth dst is 00:00:00:00:01:00 / 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
03/11/2020 10:17:08              dut.10.67.xxx.xxx: 

ice_flow_create(): Succeeded to create (1) flow
03/11/2020 10:17:08              dut.10.67.xxx.xxx: flow create 0 ingress pattern eth / ipv6 src is 2001::3 dst is 2001::4 tc is 12 / end actions queue index 3 / end
03/11/2020 10:17:08              dut.10.67.xxx.xxx: 

ice_flow_create(): Succeeded to create (1) flow
03/11/2020 10:17:11              dut.10.67.xxx.xxx: 
testpmd> port 0/queue 2: received 1 packets
  src=A4:BF:01:69:86:F8 - dst=00:00:00:00:01:00 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xd3ce04a7 - 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 

03/11/2020 10:17:15              dut.10.67.xxx.xxx: port 0/queue 3: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - type=0x86dd - length=72 - nb_segs=1 - RSS hash=0xf5409855 - 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 

03/11/2020 10:17:15              dut.10.67.xxx.xxx: flow flush 0
03/11/2020 10:17:15              dut.10.67.xxx.xxx: 
03/11/2020 10:17:15              dut.10.67.xxx.xxx: flow create 0 ingress pattern eth dst is 00:00:00:00:01:00 / 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
03/11/2020 10:17:15              dut.10.67.xxx.xxx: 

EAL: Error: Invalid memory
ice_flow_create(): Succeeded to create (1) flow
03/11/2020 10:17:19              dut.10.67.xxx.xxx: 
testpmd> port 0/queue 4: received 1 packets
  src=A4:BF:01:69:86:F8 - dst=00:00:00:00:01:00 - type=0x0800 - length=64 - nb_segs=1 - RSS hash=0xd3ce04a7 - 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 

03/11/2020 10:17:19                TestFlexibleRxd: Test Case test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues Result PASSED:
03/11/2020 10:17:19              dut.10.67.xxx.xxx: quit
03/11/2020 10:17:20              dut.10.67.xxx.xxx: 

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_6989017125202849877 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_12595029709166206509 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_9028883229452085458 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_12486875497597782911 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_13639323302418318193 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_875851549752393329 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_4114231193880949157 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_14988608279771864731 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_11420545669557366125 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_11953996099650764493 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_13832630976730384983 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_10046882369388169528 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_18079341545862368768 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_17353583336467179917 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_14237643719776785774 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_12401291703911699478 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_15236946362115444936 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_14791734326101649230 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_7038520354861341726 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_1343927337314422990 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_17594212165771699643 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_12166766804926003356 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_6665547612815881454 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_10824661106738930881 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_2636231215588627435 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_1957868802681805912 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_14328072914297297206 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_1688920544640647956 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_15750977514250227032 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_11070743425174516576 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_15047947107943177647 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_14034338886762920436 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_1244837652378499510 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_9302028406370254441 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_11325199424697892680 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_6149505314753304954 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_10116591688960563618 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_13903906369368120295 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_9917703059218529374 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_10186615448014820423 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_749950163500623830 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_17137590187454142205 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_4115597252243807884 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_10812902976634740057 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_14710278354592323052 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_994120876097068615 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_293763488216130768 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_11305110184030787865 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_4876623084854147943 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_5986538296778069813 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_14679912972344102846 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_3648673286810844903 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_7167375141729670478 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_9391989844054179201 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_16645620697456362946 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_7147103242702736713 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_7518734762355876646 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_1382990105010777488 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_11904023662307061513 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_2239829370381563211 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_15139136068832480716 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_17768813724844332650 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_2134523864245131314 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_12615304456594702723 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_8316169852850146940 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_5343717590280148602 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_12013308914487433521 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_5260746706376030299 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_16898143792773776929 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_6143280756831452735 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_3143640154894142980 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_15735710141348430040 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_4187151861381188535 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_7407143429375263565 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_5627791564966872105 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_17035643494045135910 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_17561095719205520197 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_2002284550919199260 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_357341334657577733 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_844661656904312206 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_14015984527485920299 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_11519747547562911144 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_8454654609551468442 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_15425850422255618446 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_11850428118940714953 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_15100517785382134664 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_3977242820755778287 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_10759565355690732126 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_5070458786060956558 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_5641516044860035810 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_13190061335437126941 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_3167960152756239408 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_4565494665479502680 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_7015970533394502241 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_5426545563067574881 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_17114701337591819054 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_17941837777387924894 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_16781834209337624249 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_4461997338795051050 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_16862501817263833075 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_9390891649313885707 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_9622636800643959680 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_417180983322679766 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_12010338938879719882 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_15721189373265162784 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_4779989828230812788 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_15297095668325540403 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_544288265172304505 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_926300452395470040 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_1844067758563767171 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_7059451962190760002 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_45317573694600337 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_14608617941409092897 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_13846918224006134593 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_12074177389049637505 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_6089070167445799446 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_13048416594611679447 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_15125587226848622143 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_14133367846425087310 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_17616431087539639699 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_16869275068463755158 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_10272143750719313693 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_1030027291044343657 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_10184565712015185201 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_9813761885552503890 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_15965812941123795051 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_4984085501703165653 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_14438119927874149924 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_11133008503403446957 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_4572498029065200116 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_5881786905165243860 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_17265678470657927234 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:17:22              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:17:23                TestFlexibleRxd: Test Case test_check_IPv4_fields_in_RXD Begin
03/11/2020 10:17:23              dut.10.67.xxx.xxx: 
03/11/2020 10:17:23                         tester: 
03/11/2020 10:17:23              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
03/11/2020 10:17:24              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_8429178837006176193 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_5117209960963760107 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_13140733137179905937 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_6884242883166010873 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_5217267132153711706 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_11761251186631009418 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_16700244220428943244 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_5710438583731285804 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_6437853054770362648 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_5536237619699391595 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_16566168626004202121 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_4573148755845452412 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_5914463097545324125 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_3032683436123629892 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_5422519553213105173 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_11580778744835031934 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_1045816931880492248 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_1925225279872790624 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_16273838821231786693 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_9050462397411701422 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_17939870497062563894 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_16456461331536448789 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_5448314141230713184 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_6560476088968970390 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_5393996114691020454 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_11911052980480496824 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_10107130308339404043 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_12890006124606533858 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_14519678413864833665 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_2978916717122877660 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_4373901638481666900 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_5342424743200360469 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_9572960769593231167 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_14354562020168924298 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_10078210430594606624 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_10836287423858708876 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_18129302421076285598 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_11938626993804115968 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_828961513434683704 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_4153225721914538089 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_9323648109888469996 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_17820870072030610683 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_16055303340953451948 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_6606782344688845664 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_7393518358923312347 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_8716603582175674477 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_3356638598776625402 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_17194488861922921486 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_12225089058003664747 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_4259323855856132811 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_4020268310373257421 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_891085887895927039 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_13307297054418998340 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_5147587576085340707 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_540350468189570407 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_6956954398987061424 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_4187914599050907548 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_3287392063758686500 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_9838317974636483947 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_26414941653216825 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_16540825147639784253 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_8391879009409132543 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_14538543039781744634 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_17393220793598736941 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_16110357347648642263 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_14073479501797380649 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_9915395179086885690 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_3766686648931718795 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_16961135734134574476 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_345165565023680492 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_528165346225113168 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_4049254132943995150 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_8349614480803715358 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_7778429938081938619 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_15146338595412265347 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_4543437847671253688 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_15434656663465610745 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_760881375983112459 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_7376157285885904549 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_3571410701488439036 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_3640587281513167288 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_5760017902711161053 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_16049827489295658249 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_17767081126103747911 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_11011468541556683472 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_16827770078263147870 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_16668127981962075665 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_12681314502162773372 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_2002099300131612609 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_6937363003298417072 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_17302272765220841432 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_3072965302289063337 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_14464313803535660574 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_14309125966021778020 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_6985001850233855073 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_17233741873297195163 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_2679027010276910371 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_623266354382212023 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_938811555765460123 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_7573315913121461114 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_10902974636239592467 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_10102139519749849139 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_3932328212205265349 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_15722245371071114936 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_16681678233542870433 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_7679824942511388111 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_7826261539669767411 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_2803501823665564183 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_2735871036448253355 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_6030505520853112263 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_5935834904379961665 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_4497301443209234368 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_2412546132308091732 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_15958690845082829388 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_5328592816515556646 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_2784752792344358756 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_4486726089776353295 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_1235331783674025364 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_4743198570602927178 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_9110173519081447716 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_13795639124415546766 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_10666514163466806864 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_3087155335745563331 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_4400406040215199717 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_16036414431299112858 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_16237423688929011616 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_2654267999423009339 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_14885632665273452916 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_625388568116015966 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_16844584747790752914 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_12100038477250309282 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_4548248037785212212 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:17:34              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:17:34              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:17:34              dut.10.67.xxx.xxx: set fwd io
03/11/2020 10:17:34              dut.10.67.xxx.xxx: 

Set io packet forwarding mode
03/11/2020 10:17:34              dut.10.67.xxx.xxx: set promisc all off
03/11/2020 10:17:34              dut.10.67.xxx.xxx: 
03/11/2020 10:17:34              dut.10.67.xxx.xxx: clear port stats all
03/11/2020 10:17:34              dut.10.67.xxx.xxx: 

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
03/11/2020 10:17:34              dut.10.67.xxx.xxx: start
03/11/2020 10:17:34              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:17:38              dut.10.67.xxx.xxx: port 0/queue 2: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xb9a2c4c2 - 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 

03/11/2020 10:17:38                TestFlexibleRxd: Test Case test_check_IPv4_fields_in_RXD Result PASSED:
03/11/2020 10:17:38              dut.10.67.xxx.xxx: quit
03/11/2020 10:17:39              dut.10.67.xxx.xxx: 

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             
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_5117209960963760107 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_13140733137179905937 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_6884242883166010873 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_5217267132153711706 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_11761251186631009418 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_16700244220428943244 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_5710438583731285804 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_6437853054770362648 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_5536237619699391595 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_16566168626004202121 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_4573148755845452412 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_5914463097545324125 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_3032683436123629892 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_5422519553213105173 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_11580778744835031934 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_1045816931880492248 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_1925225279872790624 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_16273838821231786693 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_9050462397411701422 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_17939870497062563894 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_16456461331536448789 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_5448314141230713184 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_6560476088968970390 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_5393996114691020454 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_11911052980480496824 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_10107130308339404043 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_12890006124606533858 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_14519678413864833665 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_2978916717122877660 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_4373901638481666900 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_5342424743200360469 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_9572960769593231167 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_8429178837006176193 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_10078210430594606624 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_10836287423858708876 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_18129302421076285598 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_11938626993804115968 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_828961513434683704 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_4153225721914538089 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_9323648109888469996 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_17820870072030610683 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_16055303340953451948 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_6606782344688845664 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_7393518358923312347 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_8716603582175674477 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_3356638598776625402 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_17194488861922921486 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_12225089058003664747 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_4259323855856132811 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_4020268310373257421 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_891085887895927039 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_13307297054418998340 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_5147587576085340707 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_540350468189570407 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_6956954398987061424 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_4187914599050907548 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_3287392063758686500 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_9838317974636483947 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_26414941653216825 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_16540825147639784253 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_8391879009409132543 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_14538543039781744634 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_17393220793598736941 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_16110357347648642263 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_14073479501797380649 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_14354562020168924298 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_3766686648931718795 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_16961135734134574476 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_345165565023680492 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_528165346225113168 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_4049254132943995150 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_8349614480803715358 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_7778429938081938619 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_15146338595412265347 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_4543437847671253688 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_15434656663465610745 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_760881375983112459 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_7376157285885904549 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_3571410701488439036 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_3640587281513167288 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_5760017902711161053 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_16049827489295658249 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_17767081126103747911 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_11011468541556683472 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_16827770078263147870 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_16668127981962075665 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_12681314502162773372 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_2002099300131612609 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_6937363003298417072 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_17302272765220841432 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_3072965302289063337 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_14464313803535660574 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_14309125966021778020 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_6985001850233855073 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_17233741873297195163 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_2679027010276910371 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_623266354382212023 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_938811555765460123 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_9915395179086885690 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_10902974636239592467 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_10102139519749849139 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_3932328212205265349 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_15722245371071114936 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_16681678233542870433 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_7679824942511388111 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_7826261539669767411 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_2803501823665564183 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_2735871036448253355 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_6030505520853112263 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_5935834904379961665 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_4497301443209234368 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_2412546132308091732 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_15958690845082829388 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_5328592816515556646 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_2784752792344358756 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_4486726089776353295 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_1235331783674025364 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_4743198570602927178 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_9110173519081447716 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_13795639124415546766 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_10666514163466806864 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_3087155335745563331 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_4400406040215199717 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_16036414431299112858 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_16237423688929011616 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_2654267999423009339 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_14885632665273452916 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_625388568116015966 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_16844584747790752914 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_12100038477250309282 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_4548248037785212212 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_7573315913121461114 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:17:41              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:17:42                TestFlexibleRxd: Test Case test_check_IPv6_fields_in_RXD Begin
03/11/2020 10:17:42              dut.10.67.xxx.xxx: 
03/11/2020 10:17:42                         tester: 
03/11/2020 10:17:42              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
03/11/2020 10:17:43              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_16424750536413212684 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_3374776826165508035 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_687002199067328323 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_10326049770674157548 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_11700108583847660110 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_14019076940571178888 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_2705042783404491155 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_621316970616778553 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_13271472202324479528 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_6907168499339473621 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_1701026443238084084 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_7288842497631784485 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_435668789651753569 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_3292788773964192741 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_14851310949194351140 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_7703175556627695675 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_11896889250206592435 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_15657672887531283337 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_15057666141975028583 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_11592988042389205466 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_8996429644510648582 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_4027950281808389392 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_1318274012636851600 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_15269532461601789327 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_103515211907118391 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_13610076211669986232 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_5865877701316930496 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_16804702516151970442 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_15609280121132690497 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_8895324958357459597 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_17430174678068105962 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_3031452422701493997 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_4549130286745692830 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_6226068941698021940 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_11874522564566931245 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_7234545095848310069 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_8145220549008339366 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_7435778476526210990 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_5619677802373409907 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_17484366685070671476 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_10067931074745243778 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_9850154848934691797 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_2012979901956338352 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_958664097917861725 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_8017068821593384216 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_6255744581028004616 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_12628374370367250990 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_7054737588408313698 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_14175166706771747706 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_17894132645553382174 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_8554921078063713317 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_15333641169925340243 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_3225076487708437069 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_4704383455024092453 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_856320647934774797 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_6316474717185726786 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_7468671657056416447 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_15958143964616339652 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_8098104673711187149 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_1547778692377731989 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_6079193950696566252 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_15063564964817561602 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_8674273267453355254 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_15168362723891551127 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_10383036368343377733 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_10534261983929867574 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_6232712226785722847 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_2487601467785170538 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_13445042651975087548 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_18052907642447580316 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_10667179918680477617 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_9885653764693136037 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_746769385870145210 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_3299427243403980984 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_8776345897765574489 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_15902353812222771587 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_10442257598394084202 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_10524699396842493043 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_9620401480238674076 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_15165563366196698801 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_3939288668271046778 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_1482256656464154047 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_1477022676496403419 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_5182090096978175547 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_10130906104371747665 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_4112626528133825013 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_787360613090252317 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_3907619308074388671 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_9593395458635630761 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_416488726213267438 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_3400172782782683268 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_12718535799714256816 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_3207055121451166546 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_17883550672541226918 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_4475285237890537126 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_11930828757306630053 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_13201834814863950142 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_18245948505591026002 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_3396730381516595800 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_14109193771258346801 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_6942926837000785741 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_9483400679745363204 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_4345983361799950881 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_17711382083364848980 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_14481782542925973303 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_7027654756324960 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_9462845988655516121 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_16147529630952532699 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_12243626025411886338 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_14637112597421740763 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_16047822636155636601 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_7123292935829464597 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_17738963145259394890 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_17472617489220389883 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_207219821168183140 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_1865728711792120123 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_8116506916585332174 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_8213489628271290495 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_5752437687361073604 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_9199023378858467196 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_9405103607335802345 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_17097322816792873110 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_16362262041210053837 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_15986776100386111709 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_10598780582458651175 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_130911547304806386 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_4787605071355723447 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_16286931584455572411 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_10238136068675065547 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_2823933459702628785 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_7188384785202205168 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_11366697690439607202 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:17:53              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:17:53              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:17:53              dut.10.67.xxx.xxx: set fwd io
03/11/2020 10:17:53              dut.10.67.xxx.xxx: 

Set io packet forwarding mode
03/11/2020 10:17:53              dut.10.67.xxx.xxx: set promisc all off
03/11/2020 10:17:53              dut.10.67.xxx.xxx: 
03/11/2020 10:17:53              dut.10.67.xxx.xxx: clear port stats all
03/11/2020 10:17:54              dut.10.67.xxx.xxx: 

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
03/11/2020 10:17:54              dut.10.67.xxx.xxx: start
03/11/2020 10:17:54              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:17:57              dut.10.67.xxx.xxx: port 0/queue 10: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - type=0x86dd - length=72 - nb_segs=1 - RSS hash=0xdfc2d76a - RSS queue=0xa - 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=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/11/2020 10:17:57                TestFlexibleRxd: Test Case test_check_IPv6_fields_in_RXD Result PASSED:
03/11/2020 10:17:57              dut.10.67.xxx.xxx: quit
03/11/2020 10:17:58              dut.10.67.xxx.xxx: 

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:            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_3374776826165508035 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_687002199067328323 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_10326049770674157548 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_11700108583847660110 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_14019076940571178888 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_2705042783404491155 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_621316970616778553 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_13271472202324479528 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_6907168499339473621 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_1701026443238084084 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_7288842497631784485 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_435668789651753569 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_3292788773964192741 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_14851310949194351140 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_7703175556627695675 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_11896889250206592435 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_15657672887531283337 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_15057666141975028583 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_11592988042389205466 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_8996429644510648582 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_4027950281808389392 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_1318274012636851600 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_15269532461601789327 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_103515211907118391 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_13610076211669986232 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_5865877701316930496 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_16804702516151970442 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_15609280121132690497 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_8895324958357459597 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_17430174678068105962 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_3031452422701493997 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_4549130286745692830 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_16424750536413212684 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_11874522564566931245 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_7234545095848310069 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_8145220549008339366 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_7435778476526210990 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_5619677802373409907 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_17484366685070671476 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_10067931074745243778 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_9850154848934691797 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_2012979901956338352 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_958664097917861725 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_8017068821593384216 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_6255744581028004616 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_12628374370367250990 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_7054737588408313698 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_14175166706771747706 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_17894132645553382174 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_8554921078063713317 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_15333641169925340243 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_3225076487708437069 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_4704383455024092453 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_856320647934774797 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_6316474717185726786 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_7468671657056416447 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_15958143964616339652 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_8098104673711187149 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_1547778692377731989 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_6079193950696566252 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_15063564964817561602 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_8674273267453355254 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_15168362723891551127 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_10383036368343377733 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_10534261983929867574 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_6226068941698021940 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_2487601467785170538 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_13445042651975087548 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_18052907642447580316 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_10667179918680477617 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_9885653764693136037 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_746769385870145210 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_3299427243403980984 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_8776345897765574489 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_15902353812222771587 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_10442257598394084202 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_10524699396842493043 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_9620401480238674076 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_15165563366196698801 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_3939288668271046778 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_1482256656464154047 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_1477022676496403419 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_5182090096978175547 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_10130906104371747665 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_4112626528133825013 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_787360613090252317 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_3907619308074388671 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_9593395458635630761 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_416488726213267438 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_3400172782782683268 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_12718535799714256816 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_3207055121451166546 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_17883550672541226918 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_4475285237890537126 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_11930828757306630053 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_13201834814863950142 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_18245948505591026002 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_3396730381516595800 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_6232712226785722847 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_6942926837000785741 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_9483400679745363204 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_4345983361799950881 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_17711382083364848980 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_14481782542925973303 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_7027654756324960 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_9462845988655516121 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_16147529630952532699 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_12243626025411886338 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_14637112597421740763 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_16047822636155636601 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_7123292935829464597 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_17738963145259394890 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_17472617489220389883 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_207219821168183140 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_1865728711792120123 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_8116506916585332174 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_8213489628271290495 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_5752437687361073604 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_9199023378858467196 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_9405103607335802345 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_17097322816792873110 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_16362262041210053837 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_15986776100386111709 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_10598780582458651175 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_130911547304806386 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_4787605071355723447 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_16286931584455572411 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_10238136068675065547 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_2823933459702628785 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_7188384785202205168 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_11366697690439607202 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_14109193771258346801 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:18:00              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:18:01                TestFlexibleRxd: Test Case test_check_IPv6_flow_field_in_RXD Begin
03/11/2020 10:18:01              dut.10.67.xxx.xxx: 
03/11/2020 10:18:01                         tester: 
03/11/2020 10:18:01              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
03/11/2020 10:18:03              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_5936113706249909829 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_1114564828778964464 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_11063559670940571367 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_4951433830876618370 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_18359362486139142393 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_17385135944039576826 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_17417174887610089576 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_4073388056798107382 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_15500310607089535376 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_3396097789186742658 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_11617167466855215302 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_6884879182436510031 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_1689489697283377325 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_16093405526170919271 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_6501250542901892846 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_16702198759023982294 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_11187016241938290002 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_2377224702760080771 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_781096904901223984 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_1828794037458829583 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_17462118770756648419 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_7403009886357905263 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_13668283232528043874 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_13366644211697044274 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_1516182878715810344 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_2541152988054622308 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_4287607577985213021 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_15084277056819449970 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_17283717076195559325 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_16622702611779021871 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_11441804741319484505 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_7799429689382783559 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_15247603690995281200 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_16314470322682597998 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_10511029072714106969 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_12453575525665351041 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_16376408670842073048 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_7240959253873659638 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_7005835426778452883 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_1801332964781642660 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_3686925478704597212 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_224527964191365550 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_11129127882083500804 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_15068205639037538312 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_13361649101484681179 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_1162351761668759319 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_7225649693554766044 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_18257360927088963822 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_11190321991746448677 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_9780138276675303408 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_14177691261918218524 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_5060316175472819936 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_12494539598977113650 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_12529851071130678612 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_18298827827925515493 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_17269647935540905448 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_1803356195676456128 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_16944099839605688475 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_6606017495248130447 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_15441537417671776037 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_15751433161854246789 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_12405661734072440299 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_15744531805613209042 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_15679266504386639919 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_10988719594806678495 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_10761489797323923039 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_2683746692384412446 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_6090568856548171154 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_5681763092063096670 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_5188325455515526445 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_16195700313846389575 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_5239588734905985168 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_8556457956676033752 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_13753835937088046150 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_15060758499194494617 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_4477393065530097102 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_2398643525766702174 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_4325814972543072807 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_285907899367488108 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_3064331787482442113 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_4177378952115322115 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_14886170940223177814 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_6693840442069569773 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_13394718399277619341 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_12808761936714609283 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_11793166377531651787 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_13728847468516891885 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_1976631004769564662 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_11684014493684759594 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_16281667338453928327 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_9795553841402754773 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_1277101779244621093 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_3629633191708276221 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_849850706856856005 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_4680501195480430513 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_12306664806407289795 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_15442319305973614713 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_5812928653125526641 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_3296790601681515103 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_13139790556845991346 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_10331899023172189857 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_16338741325507186509 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_4489969495164336142 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_14849498828896501531 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_17465090281178460803 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_17687757480737650541 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_7705587270190136539 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_4342805380469118078 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_16670420581233287007 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_12097685536862401396 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_3283262083601643695 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_10106506880095451040 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_542831145489491294 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_10422649978807441425 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_16067601457745246835 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_14249328382820212815 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_11276029096643270897 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_2497738709195277441 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_2070993156315749909 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_13467297320133340936 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_18237679196164305537 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_16981160869214685331 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_9677746123490437308 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_17644257123755617308 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_6168578286867787673 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_3236069364410793498 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_4679833027724480535 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_3819138365614060 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_8732019454542535490 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_6609488544963582310 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_13511724085582823619 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_17317043846426045684 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:18:13              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:18:13              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:18:13              dut.10.67.xxx.xxx: set fwd io
03/11/2020 10:18:13              dut.10.67.xxx.xxx: 

Set io packet forwarding mode
03/11/2020 10:18:13              dut.10.67.xxx.xxx: set promisc all off
03/11/2020 10:18:13              dut.10.67.xxx.xxx: 
03/11/2020 10:18:13              dut.10.67.xxx.xxx: clear port stats all
03/11/2020 10:18:13              dut.10.67.xxx.xxx: 

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
03/11/2020 10:18:13              dut.10.67.xxx.xxx: start
03/11/2020 10:18:13              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:18:16              dut.10.67.xxx.xxx: port 0/queue 25: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - type=0x86dd - length=72 - nb_segs=1 - RSS hash=0x82e2d5b9 - RSS queue=0x19 - 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=0x19
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/11/2020 10:18:16                TestFlexibleRxd: Test Case test_check_IPv6_flow_field_in_RXD Result PASSED:
03/11/2020 10:18:16              dut.10.67.xxx.xxx: quit
03/11/2020 10:18:18              dut.10.67.xxx.xxx: 

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

  ------- Forward Stats for RX Port= 0/Queue=25 -> TX Port= 0/Queue=25 -------
  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_1114564828778964464 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_11063559670940571367 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_4951433830876618370 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_18359362486139142393 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_17385135944039576826 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_17417174887610089576 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_4073388056798107382 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_15500310607089535376 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_3396097789186742658 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_11617167466855215302 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_6884879182436510031 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_1689489697283377325 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_16093405526170919271 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_6501250542901892846 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_16702198759023982294 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_11187016241938290002 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_2377224702760080771 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_781096904901223984 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_1828794037458829583 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_17462118770756648419 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_7403009886357905263 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_13668283232528043874 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_13366644211697044274 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_1516182878715810344 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_2541152988054622308 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_4287607577985213021 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_15084277056819449970 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_17283717076195559325 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_16622702611779021871 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_11441804741319484505 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_7799429689382783559 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_15247603690995281200 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_5936113706249909829 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_10511029072714106969 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_12453575525665351041 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_16376408670842073048 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_7240959253873659638 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_7005835426778452883 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_1801332964781642660 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_3686925478704597212 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_224527964191365550 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_11129127882083500804 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_15068205639037538312 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_13361649101484681179 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_1162351761668759319 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_7225649693554766044 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_18257360927088963822 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_11190321991746448677 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_9780138276675303408 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_14177691261918218524 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_5060316175472819936 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_12494539598977113650 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_12529851071130678612 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_18298827827925515493 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_17269647935540905448 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_1803356195676456128 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_16944099839605688475 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_6606017495248130447 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_15441537417671776037 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_15751433161854246789 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_12405661734072440299 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_15744531805613209042 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_15679266504386639919 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_10988719594806678495 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_10761489797323923039 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_16314470322682597998 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_6090568856548171154 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_5681763092063096670 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_5188325455515526445 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_16195700313846389575 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_5239588734905985168 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_8556457956676033752 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_13753835937088046150 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_15060758499194494617 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_4477393065530097102 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_2398643525766702174 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_4325814972543072807 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_285907899367488108 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_3064331787482442113 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_4177378952115322115 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_14886170940223177814 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_6693840442069569773 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_13394718399277619341 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_12808761936714609283 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_11793166377531651787 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_13728847468516891885 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_1976631004769564662 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_11684014493684759594 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_16281667338453928327 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_9795553841402754773 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_1277101779244621093 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_3629633191708276221 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_849850706856856005 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_4680501195480430513 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_12306664806407289795 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_15442319305973614713 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_5812928653125526641 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_3296790601681515103 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_2683746692384412446 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_10331899023172189857 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_16338741325507186509 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_4489969495164336142 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_14849498828896501531 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_17465090281178460803 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_17687757480737650541 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_7705587270190136539 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_4342805380469118078 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_16670420581233287007 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_12097685536862401396 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_3283262083601643695 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_10106506880095451040 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_542831145489491294 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_10422649978807441425 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_16067601457745246835 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_14249328382820212815 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_11276029096643270897 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_2497738709195277441 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_2070993156315749909 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_13467297320133340936 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_18237679196164305537 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_16981160869214685331 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_9677746123490437308 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_17644257123755617308 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_6168578286867787673 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_3236069364410793498 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_4679833027724480535 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_3819138365614060 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_8732019454542535490 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_6609488544963582310 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_13511724085582823619 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_17317043846426045684 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_13139790556845991346 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:18:20              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:18:20                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv4_in_RXD Begin
03/11/2020 10:18:20              dut.10.67.xxx.xxx: 
03/11/2020 10:18:20                         tester: 
03/11/2020 10:18:20              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
03/11/2020 10:18:22              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_14839935198049290995 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_5535113412150328249 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_6056664233754967823 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_18356397628632141392 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_7963897800859229587 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_5757698614795057170 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_11451496249284476048 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_14858207213738794522 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_16048442156721053186 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_495716269373304437 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_13748883008358036718 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_16342151784123192738 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_189936593226117884 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_14884952106979984943 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_6509196025790767528 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_16028633149866356507 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_6062188800043603182 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_3584553690687498980 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_4724781172693226776 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_10737695804066298610 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_17346017255403743432 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_12795309536066852207 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_2388129222716118995 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_5261802228047821171 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_17164172739195438610 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_1551858979855091365 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_7483127636199785883 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_5106253982960584478 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_9532474406510303107 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_7680691557239650980 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_11653054015659778082 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_6875921820904744175 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_4066595647919471588 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_6354159264833173907 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_11569587670985804488 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_13243279043133174745 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_9785671859312731571 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_10863980168679444769 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_17405320145994657608 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_13044287828840108134 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_18282292443932247601 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_17982394927300628544 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_18139480259409030848 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_7535595689424059474 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_17014549922612284929 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_7786999813214613310 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_11155156851582273935 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_6978905001216079752 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_16884773037343026792 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_11575559778732950531 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_11313785936093973373 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_6342028132605631106 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_4091077204345028932 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_15727437775835027897 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_18272328039196921201 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_16560163778925260340 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_15956732881254690966 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_3949290528989432118 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_16741186673340969903 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_10084507427336419094 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_10767306395716824024 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_3390944231089088813 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_5942169929428351277 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_6643592173061414434 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_14762743482156693783 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_11956313960226697356 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_1887998544936938239 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_4372320228368523803 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_13519845076843519579 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_4240481673798304088 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_14415533929258363799 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_8872162999639595348 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_9637442665192922147 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_13499808220919759251 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_11941344508078265014 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_3061373083498751974 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_7401416176970057087 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_6044768227261406564 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_8512189881953992361 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_10003819210613113826 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_14159607885973555506 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_15099875544109140780 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_11655809955817956559 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_10569884369558971320 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_5370542673716679486 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_3647093564337876752 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_3393923679805528841 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_10173499143548256229 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_13792878482877567009 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_7993565500166601192 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_15503046652395967588 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_14478692972358874191 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_9118357462870753978 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_10098942224597977766 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_6467906474343617993 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_3927124948529561970 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_9382131980205971982 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_4720014580048358750 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_7771354739052454200 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_3057578050715684219 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_4612674601318193483 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_7084270465382141288 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_915889650792683459 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_14141215065763565987 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_10310442167107842363 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_1430345311464420543 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_1311179577836176771 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_8362937208421215917 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_12457287833978040794 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_1106315506514354154 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_11327233471999979786 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_4182610581737037693 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_11845918556882935818 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_12054072890877347992 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_6681476423687105030 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_17246707148783023904 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_164968566596727136 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_863813702447781756 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_14497104704372034136 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_11710311736783339640 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_4392923635409297386 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_11453738903816381551 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_11360875486908898061 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_3446144020574085079 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_15930844858231077592 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_4614262943181833028 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_15153611754388048813 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_11289341377082143855 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_4700277648289209739 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_16900732416058126998 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_9169077408243645927 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_4305224278282348154 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:18:32              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:18:32              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:18:32              dut.10.67.xxx.xxx: set fwd io
03/11/2020 10:18:32              dut.10.67.xxx.xxx: 

Set io packet forwarding mode
03/11/2020 10:18:32              dut.10.67.xxx.xxx: set promisc all off
03/11/2020 10:18:32              dut.10.67.xxx.xxx: 
03/11/2020 10:18:32              dut.10.67.xxx.xxx: clear port stats all
03/11/2020 10:18:32              dut.10.67.xxx.xxx: 

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
03/11/2020 10:18:32              dut.10.67.xxx.xxx: start
03/11/2020 10:18:32              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:18:36              dut.10.67.xxx.xxx: port 0/queue 24: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - type=0x0800 - length=64 - nb_segs=1 - RSS hash=0xf3011158 - RSS queue=0x18 - 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=0x18
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/11/2020 10:18:36                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv4_in_RXD Result PASSED:
03/11/2020 10:18:36              dut.10.67.xxx.xxx: quit
03/11/2020 10:18:37              dut.10.67.xxx.xxx: 

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

  ------- Forward Stats for RX Port= 0/Queue=24 -> TX Port= 0/Queue=24 -------
  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_5535113412150328249 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_6056664233754967823 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_18356397628632141392 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_7963897800859229587 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_5757698614795057170 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_11451496249284476048 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_14858207213738794522 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_16048442156721053186 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_495716269373304437 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_13748883008358036718 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_16342151784123192738 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_189936593226117884 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_14884952106979984943 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_6509196025790767528 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_16028633149866356507 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_6062188800043603182 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_3584553690687498980 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_4724781172693226776 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_10737695804066298610 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_17346017255403743432 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_12795309536066852207 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_2388129222716118995 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_5261802228047821171 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_17164172739195438610 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_1551858979855091365 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_7483127636199785883 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_5106253982960584478 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_9532474406510303107 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_7680691557239650980 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_11653054015659778082 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_6875921820904744175 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_4066595647919471588 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_14839935198049290995 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_11569587670985804488 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_13243279043133174745 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_9785671859312731571 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_10863980168679444769 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_17405320145994657608 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_13044287828840108134 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_18282292443932247601 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_17982394927300628544 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_18139480259409030848 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_7535595689424059474 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_17014549922612284929 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_7786999813214613310 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_11155156851582273935 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_6978905001216079752 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_16884773037343026792 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_11575559778732950531 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_11313785936093973373 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_6342028132605631106 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_4091077204345028932 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_15727437775835027897 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_18272328039196921201 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_16560163778925260340 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_15956732881254690966 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_3949290528989432118 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_16741186673340969903 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_10084507427336419094 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_10767306395716824024 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_3390944231089088813 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_5942169929428351277 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_6643592173061414434 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_14762743482156693783 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_11956313960226697356 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_6354159264833173907 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_4372320228368523803 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_13519845076843519579 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_4240481673798304088 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_14415533929258363799 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_8872162999639595348 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_9637442665192922147 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_13499808220919759251 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_11941344508078265014 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_3061373083498751974 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_7401416176970057087 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_6044768227261406564 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_8512189881953992361 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_10003819210613113826 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_14159607885973555506 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_15099875544109140780 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_11655809955817956559 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_10569884369558971320 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_5370542673716679486 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_3647093564337876752 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_3393923679805528841 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_10173499143548256229 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_13792878482877567009 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_7993565500166601192 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_15503046652395967588 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_14478692972358874191 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_9118357462870753978 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_10098942224597977766 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_6467906474343617993 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_3927124948529561970 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_9382131980205971982 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_4720014580048358750 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_7771354739052454200 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_1887998544936938239 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_4612674601318193483 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_7084270465382141288 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_915889650792683459 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_14141215065763565987 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_10310442167107842363 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_1430345311464420543 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_1311179577836176771 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_8362937208421215917 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_12457287833978040794 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_1106315506514354154 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_11327233471999979786 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_4182610581737037693 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_11845918556882935818 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_12054072890877347992 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_6681476423687105030 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_17246707148783023904 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_164968566596727136 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_863813702447781756 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_14497104704372034136 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_11710311736783339640 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_4392923635409297386 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_11453738903816381551 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_11360875486908898061 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_3446144020574085079 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_15930844858231077592 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_4614262943181833028 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_15153611754388048813 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_11289341377082143855 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_4700277648289209739 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_16900732416058126998 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_9169077408243645927 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_4305224278282348154 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_3057578050715684219 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:18:39              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:18:39                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv6_in_RXD Begin
03/11/2020 10:18:40              dut.10.67.xxx.xxx: 
03/11/2020 10:18:40                         tester: 
03/11/2020 10:18:40              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
03/11/2020 10:18:41              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_13234102783005994700 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_3663099454844149120 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_6055473040965790389 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_4335392470834825383 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_6632859551786898347 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_14114773691305058761 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_7162500377390346461 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_5765899911026659107 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_17635722071643368127 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_15829732790185799879 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_3650431287730706618 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_7772461403704961 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_2896062893562159878 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_10548952850161605247 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_11511798631026577896 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_13934735688135151594 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_1324817812761870806 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_4155077801875787472 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_6238310371873615865 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_2997922310728494268 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_8208219587580736408 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_13511104307509597708 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_10045479516934926066 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_13978823940052093149 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_11645852586492939994 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_17064333281072008189 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_3015932874897538211 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_14623801509217936323 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_3836606929117483729 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_3033824707287490844 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_8960092551595558300 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_12929966032568609574 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_729759493224245937 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_10605941221744223238 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_7524160281143241385 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_8108528391552832605 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_7115324572311581517 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_1580562504258080067 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_1832183163773842974 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_3295027759117787045 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_7358705556853544016 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_9726509516167119268 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_8071909228783737570 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_4819057484601256488 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_11777261244260670936 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_17604927779716277212 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_9773346989139565086 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_2035724285960568759 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_17426557369825329629 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_9874714361026864242 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_9086854927400418030 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_1763515256911172113 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_12800997432115802955 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_18020465835831137400 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_17186940518748957288 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_4581079996167385927 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_9601587598887374550 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_17579676668690948331 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_17383720568266210254 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_17893177896508663484 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_9357957090932095688 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_17769996127006524130 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_16521681339737041439 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_18277928055341096061 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_1716164809349210410 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_14335055682233935875 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_11751356136660604520 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_7897903511150926262 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_4354538879949967001 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_3901253695043100317 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_13204658010136601629 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_2381077727691387669 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_6227769000659881707 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_1407984271520439307 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_10634205279126131618 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_11763579615972878406 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_2475741817383760008 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_17743329841975336033 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_11809703754418981399 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_2417333155443758821 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_1796740889190744957 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_11152818557970844176 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_394455785682449574 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_7184016156793804635 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_15854665854406130361 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_11976950037104149959 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_11343433796187601487 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_2068133195620992892 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_11392778560171645902 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_12687660489246984653 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_7603244101027637666 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_15162736657931287832 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_8774623407918335214 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_15875225102862275822 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_13447002728248960287 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_18041489683049309135 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_13731672084951490758 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_10954501001045509282 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_746617007439133209 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_5271960274168005337 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_13183336987653703256 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_13470221879571867098 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_303448285527755963 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_6835701630968692961 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_5611859475302251843 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_6366446538829743632 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_2763303942807306678 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_1573623960681300581 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_14852537480120833651 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_3606371651675954851 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_14295799305793250896 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_255474986354602844 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_9411917146920657467 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_507397439941742440 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_3543082038003210564 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_13449329320806491989 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_643740486257818197 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_11190539584296055372 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_14003903780072023451 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_2041546818549747106 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_13564969568630826391 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_15386149662507728283 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_8018171996092153190 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_11004949483294210131 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_8677590854292396602 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_619815026203985084 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_8630665819874304104 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_17735824350400921656 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_17395986031411592317 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_1423170898609629552 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_14440013638719483722 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_10710998776112136311 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:18:51              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:18:51              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:18:51              dut.10.67.xxx.xxx: set fwd io
03/11/2020 10:18:51              dut.10.67.xxx.xxx: 

Set io packet forwarding mode
03/11/2020 10:18:51              dut.10.67.xxx.xxx: set promisc all off
03/11/2020 10:18:51              dut.10.67.xxx.xxx: 
03/11/2020 10:18:51              dut.10.67.xxx.xxx: clear port stats all
03/11/2020 10:18:51              dut.10.67.xxx.xxx: 

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
03/11/2020 10:18:51              dut.10.67.xxx.xxx: start
03/11/2020 10:18:51              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:18:55              dut.10.67.xxx.xxx: port 0/queue 14: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - type=0x86dd - length=84 - nb_segs=1 - RSS hash=0x1ae3aece - RSS queue=0xe - 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=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/11/2020 10:18:55                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv6_in_RXD Result PASSED:
03/11/2020 10:18:55              dut.10.67.xxx.xxx: quit
03/11/2020 10:18:56              dut.10.67.xxx.xxx: 

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

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 0/Queue=14 -------
  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_3663099454844149120 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_6055473040965790389 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_4335392470834825383 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_6632859551786898347 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_14114773691305058761 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_7162500377390346461 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_5765899911026659107 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_17635722071643368127 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_15829732790185799879 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_3650431287730706618 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_7772461403704961 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_2896062893562159878 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_10548952850161605247 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_11511798631026577896 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_13934735688135151594 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_1324817812761870806 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_4155077801875787472 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_6238310371873615865 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_2997922310728494268 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_8208219587580736408 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_13511104307509597708 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_10045479516934926066 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_13978823940052093149 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_11645852586492939994 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_17064333281072008189 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_3015932874897538211 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_14623801509217936323 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_3836606929117483729 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_3033824707287490844 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_8960092551595558300 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_12929966032568609574 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_729759493224245937 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_13234102783005994700 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_7524160281143241385 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_8108528391552832605 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_7115324572311581517 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_1580562504258080067 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_1832183163773842974 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_3295027759117787045 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_7358705556853544016 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_9726509516167119268 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_8071909228783737570 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_4819057484601256488 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_11777261244260670936 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_17604927779716277212 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_9773346989139565086 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_2035724285960568759 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_17426557369825329629 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_9874714361026864242 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_9086854927400418030 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_1763515256911172113 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_12800997432115802955 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_18020465835831137400 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_17186940518748957288 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_4581079996167385927 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_9601587598887374550 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_17579676668690948331 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_17383720568266210254 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_17893177896508663484 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_9357957090932095688 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_17769996127006524130 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_16521681339737041439 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_18277928055341096061 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_1716164809349210410 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_14335055682233935875 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_10605941221744223238 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_7897903511150926262 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_4354538879949967001 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_3901253695043100317 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_13204658010136601629 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_2381077727691387669 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_6227769000659881707 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_1407984271520439307 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_10634205279126131618 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_11763579615972878406 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_2475741817383760008 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_17743329841975336033 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_11809703754418981399 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_2417333155443758821 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_1796740889190744957 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_11152818557970844176 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_394455785682449574 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_7184016156793804635 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_15854665854406130361 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_11976950037104149959 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_11343433796187601487 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_2068133195620992892 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_11392778560171645902 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_12687660489246984653 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_7603244101027637666 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_15162736657931287832 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_8774623407918335214 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_15875225102862275822 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_13447002728248960287 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_18041489683049309135 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_13731672084951490758 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_10954501001045509282 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_746617007439133209 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_11751356136660604520 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_13183336987653703256 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_13470221879571867098 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_303448285527755963 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_6835701630968692961 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_5611859475302251843 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_6366446538829743632 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_2763303942807306678 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_1573623960681300581 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_14852537480120833651 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_3606371651675954851 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_14295799305793250896 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_255474986354602844 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_9411917146920657467 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_507397439941742440 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_3543082038003210564 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_13449329320806491989 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_643740486257818197 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_11190539584296055372 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_14003903780072023451 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_2041546818549747106 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_13564969568630826391 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_15386149662507728283 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_8018171996092153190 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_11004949483294210131 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_8677590854292396602 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_619815026203985084 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_8630665819874304104 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_17735824350400921656 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_17395986031411592317 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_1423170898609629552 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_14440013638719483722 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_10710998776112136311 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_5271960274168005337 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:18:58              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:18:59                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag Begin
03/11/2020 10:18:59              dut.10.67.xxx.xxx: 
03/11/2020 10:18:59                         tester: 
03/11/2020 10:18:59              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
03/11/2020 10:19:00              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_14471040340384370733 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_17793408616349159952 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_12507311122712285456 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_10192722691854367530 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_7862104016391922315 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_1813592659456780498 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_7883639686114488134 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_10503284038496708534 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_8643418205840728650 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_16381556357710790493 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_18065745084550214154 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_3795109117906251752 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_13356253943761658500 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_10541272247172220762 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_16297243216854633337 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_1182887221542894384 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_7636143906224286848 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_1745954260326874222 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_11646147648453026714 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_16576521657337666363 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_7850975529012653448 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_16437970729365672060 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_12271786129019282830 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_13531780875312412359 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_17064308902357696511 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_1850897095193569171 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_4567586159870541066 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_9302165335236187304 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_17961406963218276015 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_8427577294764853012 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_11790379366080314761 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_10292244204026772546 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_6820242567699105153 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_18420995158320565471 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_602819487854168844 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_3878245233116928042 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_5553579053993846496 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_17829385807397356519 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_7767112089963496630 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_14020251392297052227 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_9008582773189867839 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_11865881654905808038 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_1736672022834108794 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_12205659584805517113 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_1092391755087162973 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_9286121547515413959 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_15344062513509912382 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_11026842531653174317 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_14971378847877681394 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_14693150794729086365 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_6062900248781549131 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_18017823238093164600 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_10621307474861531383 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_4861431627412162791 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_16655635149538992507 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_2200480715954326995 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_14694909559833826428 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_17991236570005386253 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_15094831247854188827 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_9929085816357404831 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_14125888928118232071 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_6602164384653047920 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_2685792944130460405 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_6920046411029529317 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_17075593929779799932 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_762479641325737802 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_16602981064194100438 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_11086900425208778483 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_7725048531317731433 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_10807123183210645930 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_15915456941371330567 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_5214658550673279554 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_875956821711691399 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_10628044410087510287 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_15945579383627325353 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_17813323333665502932 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_9547615563603900300 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_11760728694245393090 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_2131007112071634334 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_3778610815164778086 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_5167131890066697015 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_18408342307613980534 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_15270011299473324500 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_14543633962463442504 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_8618283268828863716 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_17815635165552971367 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_17766860254521741685 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_2270285358997397500 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_7406966529109398630 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_9471019835092977884 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_12492024962644464103 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_9187508624537225580 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_11536689368010746153 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_12544150318429271243 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_2696637731028852387 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_14218913526656379262 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_7992537645875383794 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_16101475972778470162 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_17145366094577765447 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_9748602790635057115 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_10339702930954496663 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_17799096192826043299 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_180198793172341871 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_6518961997043164817 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_12889214989248886577 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_7923494536250776421 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_7710518026642399225 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_17286674708666243651 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_8716495960629873856 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_9943479406994115726 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_8807949649348328700 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_3204171142833490685 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_3420276963926109842 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_10195002922384121413 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_6913896146643951961 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_9397559278754531743 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_13434344208734757564 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_6074892387186319641 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_13834062651385478131 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_13416507892132278646 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_8823013443480551293 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_18196396743113488496 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_16948721841619363968 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_4552371164011693551 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_9271303344581304036 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_143435272267893840 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_17759372188046639438 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_10910981227223300160 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_3595189928541503681 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_10905996309394491461 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_7266571374364853957 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_12972466937488262885 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:19:10              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:19:10              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:19:10              dut.10.67.xxx.xxx: set fwd io
03/11/2020 10:19:10              dut.10.67.xxx.xxx: 

Set io packet forwarding mode
03/11/2020 10:19:10              dut.10.67.xxx.xxx: set promisc all off
03/11/2020 10:19:10              dut.10.67.xxx.xxx: 
03/11/2020 10:19:10              dut.10.67.xxx.xxx: clear port stats all
03/11/2020 10:19:11              dut.10.67.xxx.xxx: 

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
03/11/2020 10:19:11              dut.10.67.xxx.xxx: start
03/11/2020 10:19:11              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:19:14              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:19:14                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag Result PASSED:
03/11/2020 10:19:14              dut.10.67.xxx.xxx: quit
03/11/2020 10:19:15              dut.10.67.xxx.xxx: 

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_17793408616349159952 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_12507311122712285456 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_10192722691854367530 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_7862104016391922315 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_1813592659456780498 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_7883639686114488134 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_10503284038496708534 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_8643418205840728650 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_16381556357710790493 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_18065745084550214154 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_3795109117906251752 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_13356253943761658500 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_10541272247172220762 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_16297243216854633337 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_1182887221542894384 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_7636143906224286848 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_1745954260326874222 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_11646147648453026714 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_16576521657337666363 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_7850975529012653448 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_16437970729365672060 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_12271786129019282830 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_13531780875312412359 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_17064308902357696511 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_1850897095193569171 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_4567586159870541066 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_9302165335236187304 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_17961406963218276015 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_8427577294764853012 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_11790379366080314761 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_10292244204026772546 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_6820242567699105153 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_14471040340384370733 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_602819487854168844 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_3878245233116928042 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_5553579053993846496 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_17829385807397356519 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_7767112089963496630 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_14020251392297052227 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_9008582773189867839 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_11865881654905808038 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_1736672022834108794 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_12205659584805517113 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_1092391755087162973 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_9286121547515413959 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_15344062513509912382 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_11026842531653174317 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_14971378847877681394 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_14693150794729086365 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_6062900248781549131 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_18017823238093164600 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_10621307474861531383 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_4861431627412162791 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_16655635149538992507 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_2200480715954326995 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_14694909559833826428 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_17991236570005386253 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_15094831247854188827 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_9929085816357404831 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_14125888928118232071 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_6602164384653047920 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_2685792944130460405 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_6920046411029529317 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_17075593929779799932 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_762479641325737802 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_18420995158320565471 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_11086900425208778483 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_7725048531317731433 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_10807123183210645930 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_15915456941371330567 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_5214658550673279554 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_875956821711691399 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_10628044410087510287 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_15945579383627325353 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_17813323333665502932 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_9547615563603900300 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_11760728694245393090 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_2131007112071634334 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_3778610815164778086 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_5167131890066697015 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_18408342307613980534 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_15270011299473324500 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_14543633962463442504 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_8618283268828863716 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_17815635165552971367 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_17766860254521741685 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_2270285358997397500 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_7406966529109398630 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_9471019835092977884 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_12492024962644464103 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_9187508624537225580 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_11536689368010746153 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_12544150318429271243 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_2696637731028852387 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_14218913526656379262 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_7992537645875383794 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_16101475972778470162 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_17145366094577765447 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_16602981064194100438 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_10339702930954496663 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_17799096192826043299 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_180198793172341871 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_6518961997043164817 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_12889214989248886577 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_7923494536250776421 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_7710518026642399225 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_17286674708666243651 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_8716495960629873856 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_9943479406994115726 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_8807949649348328700 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_3204171142833490685 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_3420276963926109842 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_10195002922384121413 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_6913896146643951961 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_9397559278754531743 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_13434344208734757564 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_6074892387186319641 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_13834062651385478131 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_13416507892132278646 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_8823013443480551293 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_18196396743113488496 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_16948721841619363968 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_4552371164011693551 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_9271303344581304036 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_143435272267893840 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_17759372188046639438 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_10910981227223300160 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_3595189928541503681 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_10905996309394491461 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_7266571374364853957 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_12972466937488262885 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_9748602790635057115 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:19:17              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:19:18                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag Begin
03/11/2020 10:19:18              dut.10.67.xxx.xxx: 
03/11/2020 10:19:18                         tester: 
03/11/2020 10:19:18              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
03/11/2020 10:19:19              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_3379501727820833328 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_16944117636950515005 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_16927172807138677723 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_4780230139478710018 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_13209962261733760635 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_1381376637619839973 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_3071769838660459608 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_15594680555209997630 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_8119880735544417878 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_8435349748502353267 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_11196449216530068334 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_5712508434602705408 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_8158366548698154611 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_8722747634777011649 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_15463613652005121911 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_6684251404890695674 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_18054108378282253458 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_7808183200486794431 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_17578944848662604845 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_5182913728247460958 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_1292654328795630239 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_11014895543263902134 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_13854907740786573017 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_16772775644168866464 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_183503421094730636 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_15762342478269947448 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_10979074015406631065 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_14901985243781958654 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_8315019532431915232 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_1370295264573926775 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_5027943298699965516 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_15462728004564950197 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_8316397731281178030 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_18318616148144886635 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_3338433135825155714 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_12805001415717032515 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_14764442300341153640 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_8875282354332813807 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_7065057417188998778 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_18235294845510245464 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_7488724551793236680 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_12890926265043045629 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_10965011753389912666 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_15482676804023948311 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_6504021797710361238 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_7924144799672625125 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_516570669701565315 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_1142509072645617717 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_3976837624341324662 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_14707904840852573556 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_5381708303471482887 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_15731735838079627296 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_934101040696691799 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_11022772837046151689 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_13809054814524561589 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_6162192914598773754 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_9916805090914478612 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_2913241542644417615 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_14874449906855275738 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_11232268372785740706 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_16659232278964344264 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_3720697301903323968 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_5216900081393433523 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_15334764137893479612 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_10472901766472194241 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_18445792401352422533 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_5349879761507400200 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_1699420957179857489 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_10614307081440268821 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_13684266104958426254 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_5984191955263699792 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_14320039372832949785 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_8689513279840564122 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_7489346154291668685 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_10761737074020356521 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_8485889650469954140 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_2034379053475191465 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_15081930047109165070 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_11402768624144106894 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_6235582318739474207 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_12043665996853124869 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_3983977428197220646 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_15376742571451150932 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_9589803010428076736 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_1377624388268659587 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_5256241261704625422 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_16174118541487818588 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_7798213828288238677 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_15374409956487982008 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_11551399538785223008 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_11827474166253855720 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_4408610230295918996 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_13622341428819508722 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_9229027474595290058 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_6837023949799814520 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_11842885844795849097 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_2210872921334516471 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_9162131888642486559 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_18097687008634463903 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_5475911395649976795 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_11126527078616898418 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_11328976325739521430 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_7356321678263802568 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_13006305709293844759 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_4347599129677401727 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_5931783472184496114 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_2269669338954635341 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_13538324103191582432 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_5490639470902690107 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_11701940112883212011 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_11229183176939775989 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_2484483410486780622 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_8777046982410401867 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_1172997220431037813 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_10124085669692798915 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_2440855336799034517 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_3597542631576121783 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_17028915452564025530 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_15850761568620192395 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_3319205607760810212 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_6672471066795736397 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_8688909768927928180 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_9351187793219777721 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_18278144002399209001 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_9525732282474594641 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_13042028906902395643 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_9649466917138539017 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_4868646366652001326 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_7770481968481342649 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_5184948366278385212 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_7533962300592375889 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_10755136586581646124 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:19:29              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:19:30              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:19:30              dut.10.67.xxx.xxx: set fwd io
03/11/2020 10:19:30              dut.10.67.xxx.xxx: 

Set io packet forwarding mode
03/11/2020 10:19:30              dut.10.67.xxx.xxx: set promisc all off
03/11/2020 10:19:30              dut.10.67.xxx.xxx: 
03/11/2020 10:19:30              dut.10.67.xxx.xxx: clear port stats all
03/11/2020 10:19:30              dut.10.67.xxx.xxx: 

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
03/11/2020 10:19:30              dut.10.67.xxx.xxx: start
03/11/2020 10:19:30              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:19:33              dut.10.67.xxx.xxx: port 0/queue 4: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - type=0x9100 - length=62 - nb_segs=1 - RSS hash=0x836d25a4 - RSS queue=0x4 - Protocol Extraction:[0x8017:0x8038],vlan,stag=4:0:23,ctag=4:0:56 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER  - l2_len=14 - 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 

03/11/2020 10:19:33                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag Result FAILED: 'There are no related fields in the received VLAN packet'
03/11/2020 10:19:33              dut.10.67.xxx.xxx: quit
03/11/2020 10:19:35              dut.10.67.xxx.xxx: 

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

  ------- 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:            62
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:	62
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_16944117636950515005 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_16927172807138677723 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_4780230139478710018 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_13209962261733760635 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_1381376637619839973 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_3071769838660459608 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_15594680555209997630 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_8119880735544417878 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_8435349748502353267 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_11196449216530068334 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_5712508434602705408 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_8158366548698154611 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_8722747634777011649 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_15463613652005121911 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_6684251404890695674 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_18054108378282253458 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_7808183200486794431 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_17578944848662604845 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_5182913728247460958 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_1292654328795630239 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_11014895543263902134 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_13854907740786573017 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_16772775644168866464 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_183503421094730636 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_15762342478269947448 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_10979074015406631065 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_14901985243781958654 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_8315019532431915232 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_1370295264573926775 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_5027943298699965516 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_15462728004564950197 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_8316397731281178030 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_3379501727820833328 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_3338433135825155714 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_12805001415717032515 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_14764442300341153640 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_8875282354332813807 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_7065057417188998778 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_18235294845510245464 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_7488724551793236680 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_12890926265043045629 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_10965011753389912666 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_15482676804023948311 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_6504021797710361238 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_7924144799672625125 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_516570669701565315 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_1142509072645617717 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_3976837624341324662 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_14707904840852573556 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_5381708303471482887 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_15731735838079627296 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_934101040696691799 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_11022772837046151689 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_13809054814524561589 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_6162192914598773754 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_9916805090914478612 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_2913241542644417615 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_14874449906855275738 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_11232268372785740706 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_16659232278964344264 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_3720697301903323968 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_5216900081393433523 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_15334764137893479612 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_10472901766472194241 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_18445792401352422533 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_18318616148144886635 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_1699420957179857489 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_10614307081440268821 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_13684266104958426254 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_5984191955263699792 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_14320039372832949785 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_8689513279840564122 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_7489346154291668685 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_10761737074020356521 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_8485889650469954140 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_2034379053475191465 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_15081930047109165070 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_11402768624144106894 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_6235582318739474207 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_12043665996853124869 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_3983977428197220646 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_15376742571451150932 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_9589803010428076736 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_1377624388268659587 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_5256241261704625422 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_16174118541487818588 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_7798213828288238677 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_15374409956487982008 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_11551399538785223008 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_11827474166253855720 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_4408610230295918996 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_13622341428819508722 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_9229027474595290058 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_6837023949799814520 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_11842885844795849097 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_2210872921334516471 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_9162131888642486559 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_18097687008634463903 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_5349879761507400200 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_11126527078616898418 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_11328976325739521430 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_7356321678263802568 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_13006305709293844759 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_4347599129677401727 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_5931783472184496114 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_2269669338954635341 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_13538324103191582432 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_5490639470902690107 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_11701940112883212011 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_11229183176939775989 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_2484483410486780622 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_8777046982410401867 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_1172997220431037813 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_10124085669692798915 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_2440855336799034517 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_3597542631576121783 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_17028915452564025530 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_15850761568620192395 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_3319205607760810212 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_6672471066795736397 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_8688909768927928180 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_9351187793219777721 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_18278144002399209001 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_9525732282474594641 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_13042028906902395643 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_9649466917138539017 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_4868646366652001326 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_7770481968481342649 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_5184948366278385212 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_7533962300592375889 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_10755136586581646124 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_5475911395649976795 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:19:37              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:19:37                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021ad Begin
03/11/2020 10:19:37              dut.10.67.xxx.xxx: 
03/11/2020 10:19:37                         tester: 
03/11/2020 10:19:37              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
03/11/2020 10:19:39              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_13477895828809256930 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_16870421605044836459 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_10539322485051679490 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_14862926687425004947 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_16702119451411025770 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_8669034989453530910 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_1064739239458980760 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_17961128521030638936 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_12485310651592065741 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_6879853582998606859 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_11059712713347983356 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_9886616043693602277 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_7437412402703522415 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_12783745474611403275 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_6483885524564730399 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_12375124083432314661 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_14712304881152620917 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_7705927329175977082 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_841857209199705172 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_17472042624244212890 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_3372192753150945750 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_4758242031079745601 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_15501852511452042302 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_5242283346917781933 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_8653082086586558634 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_7710928639297158881 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_4692895129801212223 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_8336811603632619886 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_2430711466976073947 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_856067045049900323 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_1641652493727224106 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_7965425773648492910 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_16480308922986923453 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_1885138584045812446 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_9057442622182893128 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_14040791955765385723 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_17233843468386137774 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_18272062116926608344 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_12535536043747858635 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_10156596763563249041 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_7466147142067341835 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_4934226505053969753 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_16761148039689905141 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_14534374226525484671 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_7936203844702395343 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_4889699006966676668 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_10200741667692702448 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_13309618880743410989 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_5607473732311300610 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_7710444729729080582 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_15535456245268439437 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_8022800753154532369 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_6615817283829007194 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_4634308306724013610 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_11102520696500362618 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_2516007291284926147 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_11223443609569611997 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_15183214596828964445 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_17615380266446713473 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_14640099015555446736 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_5588762603418392041 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_13462541636914406778 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_7752679437488907363 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_14309305934364408958 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_2280097528489955765 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_9792261453703156961 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_14143390377528533965 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_4342538610049630733 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_7205170433126857094 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_876149966336041401 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_9971478475666056473 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_9331088587255870650 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_4625523980529404266 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_7536703129453435587 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_10067768699377388055 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_1632232918928657727 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_2016815144622916408 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_9711202319592742330 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_17609307513671282784 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_13573022184390091408 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_11582772446394807844 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_13858209754515123230 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_13502267149156834549 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_6750964906508334463 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_8465995146634187 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_4831259439144034589 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_17356453027406664637 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_14628309993798107058 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_16070580150526154758 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_8008485272588071049 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_16727401895374335869 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_4846350280455930495 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_15760724118837060259 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_12696995497844246404 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_12769500727650001219 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_2717685767973147674 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_14086582189671076118 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_11310233509376010241 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_2353037498174358272 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_15088850339262336139 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_4595069407179200793 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_1498839996784815490 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_16918008497375665662 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_9386213150922616780 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_11670401328116444682 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_8484411561270126565 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_11742611412986186244 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_18283439558960767566 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_5157474096695159276 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_16654680232957121642 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_9122506695001522739 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_3505907301249804390 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_8557461507487758842 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_5945646093827668954 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_13077832830505836211 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_13562425116966342074 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_8519591594908138558 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_6231186683860575203 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_18283409805327078365 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_9239362405386997233 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_4101485091715245717 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_18368273513831637135 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_17609422399876022654 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_11485819591177254583 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_5884927653242887323 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_10029448137810190368 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_9512643927394022997 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_1627649354636145963 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_12299019204221376776 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_2939003907879710028 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_10131892613764361565 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_7766112432121954546 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:19:49              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:19:49              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:19:49              dut.10.67.xxx.xxx: set fwd io
03/11/2020 10:19:49              dut.10.67.xxx.xxx: 

Set io packet forwarding mode
03/11/2020 10:19:49              dut.10.67.xxx.xxx: set promisc all off
03/11/2020 10:19:49              dut.10.67.xxx.xxx: 
03/11/2020 10:19:49              dut.10.67.xxx.xxx: clear port stats all
03/11/2020 10:19:49              dut.10.67.xxx.xxx: 

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
03/11/2020 10:19:49              dut.10.67.xxx.xxx: start
03/11/2020 10:19:49              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:19:53              dut.10.67.xxx.xxx: port 0/queue 11: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - type=0x88a8 - length=62 - nb_segs=1 - RSS hash=0x5c027dab - RSS queue=0xb - Protocol Extraction:[0x8017:0x8038],vlan,stag=4:0:23,ctag=4:0:56 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN L4_UDP  - sw ptype: L2_ETHER_QINQ L3_IPV4 L4_UDP  - l2_len=22 - l3_len=20 - l4_len=8 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/11/2020 10:19:53                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021ad Result FAILED: 'There are no related fields in the received VLAN packet'
03/11/2020 10:19:53              dut.10.67.xxx.xxx: quit
03/11/2020 10:19:54              dut.10.67.xxx.xxx: 

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

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 0/Queue=11 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[6] stats start **************
ice_update_vsi_stats(): rx_bytes:            62
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:	62
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_16870421605044836459 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_10539322485051679490 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_14862926687425004947 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_16702119451411025770 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_8669034989453530910 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_1064739239458980760 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_17961128521030638936 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_12485310651592065741 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_6879853582998606859 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_11059712713347983356 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_9886616043693602277 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_7437412402703522415 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_12783745474611403275 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_6483885524564730399 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_12375124083432314661 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_14712304881152620917 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_7705927329175977082 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_841857209199705172 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_17472042624244212890 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_3372192753150945750 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_4758242031079745601 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_15501852511452042302 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_5242283346917781933 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_8653082086586558634 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_7710928639297158881 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_4692895129801212223 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_8336811603632619886 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_2430711466976073947 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_856067045049900323 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_1641652493727224106 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_7965425773648492910 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_16480308922986923453 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_13477895828809256930 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_9057442622182893128 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_14040791955765385723 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_17233843468386137774 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_18272062116926608344 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_12535536043747858635 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_10156596763563249041 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_7466147142067341835 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_4934226505053969753 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_16761148039689905141 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_14534374226525484671 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_7936203844702395343 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_4889699006966676668 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_10200741667692702448 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_13309618880743410989 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_5607473732311300610 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_7710444729729080582 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_15535456245268439437 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_8022800753154532369 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_6615817283829007194 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_4634308306724013610 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_11102520696500362618 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_2516007291284926147 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_11223443609569611997 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_15183214596828964445 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_17615380266446713473 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_14640099015555446736 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_5588762603418392041 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_13462541636914406778 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_7752679437488907363 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_14309305934364408958 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_2280097528489955765 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_9792261453703156961 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_1885138584045812446 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_4342538610049630733 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_7205170433126857094 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_876149966336041401 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_9971478475666056473 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_9331088587255870650 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_4625523980529404266 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_7536703129453435587 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_10067768699377388055 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_1632232918928657727 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_2016815144622916408 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_9711202319592742330 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_17609307513671282784 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_13573022184390091408 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_11582772446394807844 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_13858209754515123230 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_13502267149156834549 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_6750964906508334463 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_8465995146634187 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_4831259439144034589 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_17356453027406664637 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_14628309993798107058 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_16070580150526154758 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_8008485272588071049 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_16727401895374335869 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_4846350280455930495 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_15760724118837060259 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_12696995497844246404 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_12769500727650001219 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_2717685767973147674 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_14086582189671076118 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_11310233509376010241 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_2353037498174358272 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_14143390377528533965 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_4595069407179200793 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_1498839996784815490 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_16918008497375665662 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_9386213150922616780 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_11670401328116444682 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_8484411561270126565 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_11742611412986186244 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_18283439558960767566 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_5157474096695159276 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_16654680232957121642 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_9122506695001522739 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_3505907301249804390 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_8557461507487758842 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_5945646093827668954 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_13077832830505836211 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_13562425116966342074 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_8519591594908138558 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_6231186683860575203 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_18283409805327078365 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_9239362405386997233 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_4101485091715245717 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_18368273513831637135 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_17609422399876022654 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_11485819591177254583 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_5884927653242887323 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_10029448137810190368 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_9512643927394022997 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_1627649354636145963 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_12299019204221376776 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_2939003907879710028 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_10131892613764361565 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_7766112432121954546 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_15088850339262336139 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:19:56              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:19:56                TestFlexibleRxd: Test Case test_check_ip_offset_of_ip Begin
03/11/2020 10:19:56              dut.10.67.xxx.xxx: 
03/11/2020 10:19:57                         tester: 
03/11/2020 10:19:57              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
03/11/2020 10:19:58              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_5228313337345693932 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_7857100393494552357 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_808014214768176110 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_18380759962706869021 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_15488809081749499980 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_10135784139032427889 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_16826408061191270508 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_11270193744953050810 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_3854223343847986264 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_6870686347661719196 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_15535227527383640348 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_16458325449578995769 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_7708933843896174065 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_213811641914443691 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_4885272766953967440 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_5540765961192225838 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_5609097104778836844 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_17971886811526131821 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_1423433679225625931 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_17949678729935729031 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_13407406391403877806 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_14194396760439691447 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_3160376089862523242 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_15393178331215033798 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_1605223535531587985 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_9363277928169308124 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_16167661448916602056 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_13964925640296969205 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_6736731427859019027 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_17175573505993152769 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_18237231584820070893 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_17687158138322099376 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_8588263760622597386 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_16233424296541646410 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_148608239284619433 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_2282776510798236197 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_767319482066425536 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_10099179760141811946 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_9673493262332389091 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_16433425448320206036 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_3100957509150202841 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_3011101140251810413 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_3292467390485326612 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_8517920858583481119 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_9042670222979918898 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_3792185362127410768 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_12610739171451344190 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_12292282469754238656 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_11288663568944103069 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_15268839810792966277 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_4831238055298487551 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_4174564058000290911 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_10941435183780822447 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_13867057319422966921 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_3314386910413146541 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_16361730207755636378 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_13390712251133903919 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_16459695356380069983 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_15457397361359933156 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_126670182282033294 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_16351629602971659312 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_54707136972595810 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_8719893953116037972 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_6192059867801312330 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_4204433831686415213 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_2606258436652696565 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_12762181771083410660 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_536998475292692728 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_16273663120931969948 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_3166520504224696904 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_14676352979943669207 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_7938145582775933226 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_9395598708487089245 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_17095853694054572252 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_13261039794917952859 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_12318564684534653173 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_12086730646954725593 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_5321338407221977565 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_8461316985941327903 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_8482318300839042789 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_9690843369153927388 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_15571919243979602546 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_9431644988490104235 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_14456739231398090907 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_12117249384981069923 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_11860888749750671291 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_10562164207159499898 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_12622675552333455444 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_16115801946068849915 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_10410157499729822202 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_16603825560258155438 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_5522575620706551875 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_12221761432843543790 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_4927096647296539940 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_14601710835831711959 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_1106510832176516314 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_1791501235682831707 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_11581031490762159227 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_12955209613960539317 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_10401962108074370673 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_16065862545168079443 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_10132844278463691772 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_5419197958636671835 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_3989240417109097340 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_13724841186938546305 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_18102752116241045303 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_11686381932225924748 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_4108001623805081399 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_9477829334205511153 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_5218165687676682564 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_1635029922951990504 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_7567513502977089443 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_2885623981961983340 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_7295285739393460970 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_14635653172943950623 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_7903636092135467390 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_16209224305209906515 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_2871973957212589125 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_6133953199984330589 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_10719085155256232498 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_18332318353437513114 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_11919163286722033671 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_4657829555568883964 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_1532167916451039256 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_17633607477808714980 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_11903689537463332435 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_10601693185425265689 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_10190810663659300779 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_16334140276726857442 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_8892346000616008041 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_3373359857317951467 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_11124816613866944357 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:20:08              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:20:08              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:20:08              dut.10.67.xxx.xxx: start
03/11/2020 10:20:08              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:20:12              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:20:15              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:20:15                TestFlexibleRxd: Test Case test_check_ip_offset_of_ip Result PASSED:
03/11/2020 10:20:15              dut.10.67.xxx.xxx: quit
03/11/2020 10:20:16              dut.10.67.xxx.xxx: 

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_7857100393494552357 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_808014214768176110 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_18380759962706869021 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_15488809081749499980 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_10135784139032427889 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_16826408061191270508 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_11270193744953050810 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_3854223343847986264 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_6870686347661719196 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_15535227527383640348 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_16458325449578995769 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_7708933843896174065 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_213811641914443691 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_4885272766953967440 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_5540765961192225838 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_5609097104778836844 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_17971886811526131821 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_1423433679225625931 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_17949678729935729031 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_13407406391403877806 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_14194396760439691447 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_3160376089862523242 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_15393178331215033798 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_1605223535531587985 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_9363277928169308124 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_16167661448916602056 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_13964925640296969205 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_6736731427859019027 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_17175573505993152769 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_18237231584820070893 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_17687158138322099376 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_8588263760622597386 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_5228313337345693932 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_148608239284619433 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_2282776510798236197 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_767319482066425536 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_10099179760141811946 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_9673493262332389091 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_16433425448320206036 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_3100957509150202841 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_3011101140251810413 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_3292467390485326612 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_8517920858583481119 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_9042670222979918898 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_3792185362127410768 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_12610739171451344190 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_12292282469754238656 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_11288663568944103069 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_15268839810792966277 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_4831238055298487551 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_4174564058000290911 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_10941435183780822447 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_13867057319422966921 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_3314386910413146541 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_16361730207755636378 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_13390712251133903919 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_16459695356380069983 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_15457397361359933156 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_126670182282033294 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_16351629602971659312 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_54707136972595810 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_8719893953116037972 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_6192059867801312330 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_4204433831686415213 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_2606258436652696565 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_16233424296541646410 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_536998475292692728 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_16273663120931969948 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_3166520504224696904 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_14676352979943669207 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_7938145582775933226 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_9395598708487089245 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_17095853694054572252 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_13261039794917952859 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_12318564684534653173 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_12086730646954725593 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_5321338407221977565 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_8461316985941327903 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_8482318300839042789 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_9690843369153927388 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_15571919243979602546 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_9431644988490104235 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_14456739231398090907 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_12117249384981069923 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_11860888749750671291 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_10562164207159499898 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_12622675552333455444 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_16115801946068849915 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_10410157499729822202 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_16603825560258155438 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_5522575620706551875 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_12221761432843543790 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_4927096647296539940 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_14601710835831711959 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_1106510832176516314 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_1791501235682831707 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_11581031490762159227 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_12955209613960539317 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_12762181771083410660 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_16065862545168079443 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_10132844278463691772 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_5419197958636671835 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_3989240417109097340 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_13724841186938546305 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_18102752116241045303 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_11686381932225924748 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_4108001623805081399 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_9477829334205511153 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_5218165687676682564 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_1635029922951990504 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_7567513502977089443 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_2885623981961983340 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_7295285739393460970 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_14635653172943950623 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_7903636092135467390 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_16209224305209906515 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_2871973957212589125 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_6133953199984330589 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_10719085155256232498 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_18332318353437513114 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_11919163286722033671 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_4657829555568883964 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_1532167916451039256 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_17633607477808714980 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_11903689537463332435 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_10601693185425265689 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_10190810663659300779 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_16334140276726857442 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_8892346000616008041 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_3373359857317951467 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_11124816613866944357 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_10401962108074370673 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:20:18              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:20:19                TestFlexibleRxd: Test Case test_check_ip_offset_with_2_vlan_tag Begin
03/11/2020 10:20:19              dut.10.67.xxx.xxx: 
03/11/2020 10:20:19                         tester: 
03/11/2020 10:20:19              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
03/11/2020 10:20:20              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_3317970101182311631 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_6057582456253312233 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_17262993300881985158 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_17872317898128491474 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_8989149982360757982 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_10803433792415787765 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_5635592721028301143 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_12814226017626826355 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_13909298500393950131 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_6173084566202943780 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_16477248765383666965 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_15608529666665388319 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_2919980161672830751 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_373567492016387793 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_4022307046955279564 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_17404192073607538245 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_8961997678564029394 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_15560796589660958287 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_9368733494210350149 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_3584270832211625005 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_234435039817763191 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_9938306259028422399 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_299158115262168207 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_14922233988497863015 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_12344344996090092444 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_5278273864057748753 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_15562494397322649842 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_17331393048236773106 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_8718397972512257790 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_13260810913834661419 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_5763399129496821337 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_1336917726165064469 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_5392281828589247439 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_7664523948352632494 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_4554160130807996600 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_17184181863105909283 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_1814952793168526080 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_3307291651765763147 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_12340737929800106958 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_5228153790381821813 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_391814037222293907 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_7148887103559115235 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_8551207691949770335 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_11749600788043263849 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_10574904186213593213 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_1073168023706861463 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_3249869414692509877 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_127928551837239899 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_15818849166942276436 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_4687630616408851848 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_1181642634373999615 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_2551422848052779250 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_15539413066088516020 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_11537557826144894747 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_12184649200872220920 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_13386296596496229340 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_8581889468994914877 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_2436623856781812863 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_14443322835046382931 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_12414799350217449029 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_1928985652852009188 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_18065983939933339179 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_9395411739478008451 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_12039036417364546769 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_5591388028930513476 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_6547194368287907700 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_5086449689660638404 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_10078471371121701361 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_8633483971766878312 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_2194673913767787268 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_9225759243590595062 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_1880445202714192788 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_5927802225177826682 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_9394102833664750965 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_4766444662873411670 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_7491226468631105656 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_1097777020583740796 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_10140370593180832677 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_2482237321680760378 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_2579113431290034106 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_17553826562310779449 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_3794623305910336444 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_9127395777594655840 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_12574103790179839164 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_11971348550671083104 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_6707535290998160506 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_13276695921410022093 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_15708149783650216515 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_2890810128215290075 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_8262956501813378627 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_10805586899931460160 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_9022492872278341587 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_2628821890805977059 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_12641681058754794950 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_3942732068258448022 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_11947035277128658002 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_2706615978033886747 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_1426218187982828180 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_16029535634056952664 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_1584793698396821075 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_1948665620496574559 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_6616742694669836664 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_8019128297786791026 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_3588596193822297769 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_16904363262657183333 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_11947063772182338068 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_13103254382344053679 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_2898219163290065112 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_18177398601587335189 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_5324031908324050547 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_4800021844512437759 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_14477614438712150070 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_6847275295766662134 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_16256391358590614353 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_13618086155984247843 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_16613101925232505658 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_14740180546164625257 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_5299558444287994180 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_6958066837534929363 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_9024813330505155332 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_12802174919089078488 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_15359369524048680860 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_7918115681000747199 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_15590828088162402798 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_14500543955050308129 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_5089314507416715501 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_7242201241212068749 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_10903253164706295856 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_8596966275959329210 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_10667323808747132658 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_390789478383911535 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_12653845247173408508 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:20:30              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:20:30              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:20:30              dut.10.67.xxx.xxx: start
03/11/2020 10:20:31              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:20:34              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:20:38              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:20:38                TestFlexibleRxd: Test Case test_check_ip_offset_with_2_vlan_tag Result PASSED:
03/11/2020 10:20:38              dut.10.67.xxx.xxx: quit
03/11/2020 10:20:39              dut.10.67.xxx.xxx: 

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_6057582456253312233 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_17262993300881985158 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_17872317898128491474 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_8989149982360757982 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_10803433792415787765 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_5635592721028301143 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_12814226017626826355 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_13909298500393950131 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_6173084566202943780 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_16477248765383666965 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_15608529666665388319 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_2919980161672830751 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_373567492016387793 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_4022307046955279564 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_17404192073607538245 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_8961997678564029394 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_15560796589660958287 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_9368733494210350149 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_3584270832211625005 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_234435039817763191 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_9938306259028422399 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_299158115262168207 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_14922233988497863015 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_12344344996090092444 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_5278273864057748753 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_15562494397322649842 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_17331393048236773106 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_8718397972512257790 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_13260810913834661419 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_5763399129496821337 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_1336917726165064469 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_5392281828589247439 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_3317970101182311631 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_4554160130807996600 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_17184181863105909283 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_1814952793168526080 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_3307291651765763147 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_12340737929800106958 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_5228153790381821813 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_391814037222293907 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_7148887103559115235 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_8551207691949770335 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_11749600788043263849 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_10574904186213593213 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_1073168023706861463 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_3249869414692509877 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_127928551837239899 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_15818849166942276436 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_4687630616408851848 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_1181642634373999615 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_2551422848052779250 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_15539413066088516020 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_11537557826144894747 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_12184649200872220920 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_13386296596496229340 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_8581889468994914877 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_2436623856781812863 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_14443322835046382931 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_12414799350217449029 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_1928985652852009188 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_18065983939933339179 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_9395411739478008451 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_12039036417364546769 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_5591388028930513476 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_6547194368287907700 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_7664523948352632494 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_10078471371121701361 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_8633483971766878312 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_2194673913767787268 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_9225759243590595062 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_1880445202714192788 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_5927802225177826682 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_9394102833664750965 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_4766444662873411670 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_7491226468631105656 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_1097777020583740796 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_10140370593180832677 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_2482237321680760378 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_2579113431290034106 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_17553826562310779449 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_3794623305910336444 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_9127395777594655840 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_12574103790179839164 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_11971348550671083104 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_6707535290998160506 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_13276695921410022093 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_15708149783650216515 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_2890810128215290075 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_8262956501813378627 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_10805586899931460160 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_9022492872278341587 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_2628821890805977059 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_12641681058754794950 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_3942732068258448022 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_11947035277128658002 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_2706615978033886747 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_1426218187982828180 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_16029535634056952664 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_5086449689660638404 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_1948665620496574559 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_6616742694669836664 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_8019128297786791026 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_3588596193822297769 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_16904363262657183333 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_11947063772182338068 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_13103254382344053679 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_2898219163290065112 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_18177398601587335189 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_5324031908324050547 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_4800021844512437759 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_14477614438712150070 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_6847275295766662134 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_16256391358590614353 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_13618086155984247843 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_16613101925232505658 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_14740180546164625257 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_5299558444287994180 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_6958066837534929363 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_9024813330505155332 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_12802174919089078488 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_15359369524048680860 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_7918115681000747199 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_15590828088162402798 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_14500543955050308129 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_5089314507416715501 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_7242201241212068749 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_10903253164706295856 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_8596966275959329210 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_10667323808747132658 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_390789478383911535 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_12653845247173408508 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_1584793698396821075 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:20:41              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:20:41                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS Begin
03/11/2020 10:20:42              dut.10.67.xxx.xxx: 
03/11/2020 10:20:42                         tester: 
03/11/2020 10:20:42              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
03/11/2020 10:20:43              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_13132975312469979402 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_1433273704263096382 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_1423125365239367824 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_5255987685751633457 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_8550623948233353778 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_18005650915241255569 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_2776960419978913890 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_15317311480152043852 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_18098038746646328604 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_10913044858420924804 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_5602732493006086200 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_6684404708685996234 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_3923564295568529178 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_11841551726684860985 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_7938657192962120713 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_674353122763390452 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_15698424228100742402 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_18407189775711820334 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_15721516295390331266 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_13934289661912772353 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_8439747718395025559 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_12059362059814976551 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_11421842316060347181 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_7266721995416654247 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_11354783000100324172 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_5055894077452681010 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_13270082843213212972 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_1904409428336621189 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_7869082848297987309 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_1197627182611122546 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_1978214548507949505 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_12425548055977938766 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_14814440383481436588 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_14869527203937695001 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_2259074283020133840 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_15645184820471580046 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_6742930301666532644 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_6223731772043823612 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_13052695383290973615 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_11962596010798625658 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_9966965007551355992 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_2776503702494362073 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_11683489237530500302 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_1092773209824951087 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_6720236811571998325 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_1897482388001570031 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_340191141905855061 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_14120558518219756245 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_3808604497390819706 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_15420707424261492261 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_13974575908207430611 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_7740804756528792871 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_7497794241528659805 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_6292663295868617937 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_16968437852382708179 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_4033575793768465148 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_17776193583934822288 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_4154138983689327292 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_16955802256095271166 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_12113997596180132835 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_1586149164471485038 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_80484805542158954 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_896127757069499019 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_5180043736006852473 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_17805319619880511862 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_4410777441546320607 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_17631128208465360973 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_15725916830462182364 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_11744044534514864813 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_13780468780307281236 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_5807234151501995516 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_13048735514292683985 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_3502220868759933865 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_13575090424770901320 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_6772096811505449768 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_4828332689299249155 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_11763646695613749881 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_2572697110485919027 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_1946818406233264535 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_7522467297057080396 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_17217818647247043072 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_219737744192186361 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_5971339991144414912 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_18390067485063600884 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_11121703876386680346 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_3294190619917597893 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_976386470841897221 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_9144540636719833448 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_7524685545702580773 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_4750127006762252209 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_10129652730353576830 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_16237352902691141090 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_13857242751521800238 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_4632122236827922743 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_11941139822701630480 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_17154572518808072268 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_2516912875377484574 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_16706309417270093105 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_2581872665133908492 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_17257764860339119961 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_10209276034773260525 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_16098122962518666114 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_17194761349971156415 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_3182022751969746960 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_16287292845689736037 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_3495801257377808703 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_4950426483763453686 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_6401523974228701208 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_13693032111568136109 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_16681501805023252782 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_13085474199681862500 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_5302461503601593243 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_3627081943831604566 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_9665402120168518720 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_17512877336748015006 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_2698180320597485833 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_6935166826977859820 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_4716653137522907339 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_17696839143252144782 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_662868907071858795 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_411118355228250966 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_16775323247585467751 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_5221214442615509164 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_8887671076163629621 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_9645736261369225669 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_6565244294508881507 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_1532072938796113736 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_15159799094035916075 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_12224847682062792877 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_5629707955983561100 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_18051841058555828220 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_12312461599848926 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:20:53              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:20:53              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:20:53              dut.10.67.xxx.xxx: start
03/11/2020 10:20:53              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:20:57              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:21:00              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:21:04              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:21:07              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:21:11              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:21:15              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:21:18              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:21:22              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:21:25              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:21:29              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:21:29                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS Result PASSED:
03/11/2020 10:21:29              dut.10.67.xxx.xxx: quit
03/11/2020 10:21:30              dut.10.67.xxx.xxx: 

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_1433273704263096382 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_1423125365239367824 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_5255987685751633457 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_8550623948233353778 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_18005650915241255569 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_2776960419978913890 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_15317311480152043852 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_18098038746646328604 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_10913044858420924804 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_5602732493006086200 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_6684404708685996234 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_3923564295568529178 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_11841551726684860985 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_7938657192962120713 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_674353122763390452 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_15698424228100742402 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_18407189775711820334 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_15721516295390331266 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_13934289661912772353 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_8439747718395025559 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_12059362059814976551 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_11421842316060347181 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_7266721995416654247 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_11354783000100324172 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_5055894077452681010 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_13270082843213212972 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_1904409428336621189 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_7869082848297987309 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_1197627182611122546 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_1978214548507949505 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_12425548055977938766 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_14814440383481436588 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_13132975312469979402 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_2259074283020133840 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_15645184820471580046 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_6742930301666532644 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_6223731772043823612 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_13052695383290973615 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_11962596010798625658 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_9966965007551355992 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_2776503702494362073 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_11683489237530500302 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_1092773209824951087 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_6720236811571998325 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_1897482388001570031 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_340191141905855061 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_14120558518219756245 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_3808604497390819706 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_15420707424261492261 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_13974575908207430611 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_7740804756528792871 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_7497794241528659805 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_6292663295868617937 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_16968437852382708179 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_4033575793768465148 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_17776193583934822288 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_4154138983689327292 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_16955802256095271166 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_12113997596180132835 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_1586149164471485038 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_80484805542158954 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_896127757069499019 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_5180043736006852473 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_17805319619880511862 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_4410777441546320607 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_14869527203937695001 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_15725916830462182364 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_11744044534514864813 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_13780468780307281236 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_5807234151501995516 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_13048735514292683985 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_3502220868759933865 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_13575090424770901320 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_6772096811505449768 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_4828332689299249155 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_11763646695613749881 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_2572697110485919027 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_1946818406233264535 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_7522467297057080396 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_17217818647247043072 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_219737744192186361 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_5971339991144414912 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_18390067485063600884 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_11121703876386680346 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_3294190619917597893 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_976386470841897221 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_9144540636719833448 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_7524685545702580773 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_4750127006762252209 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_10129652730353576830 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_16237352902691141090 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_13857242751521800238 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_4632122236827922743 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_11941139822701630480 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_17154572518808072268 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_2516912875377484574 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_16706309417270093105 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_2581872665133908492 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_17631128208465360973 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_10209276034773260525 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_16098122962518666114 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_17194761349971156415 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_3182022751969746960 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_16287292845689736037 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_3495801257377808703 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_4950426483763453686 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_6401523974228701208 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_13693032111568136109 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_16681501805023252782 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_13085474199681862500 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_5302461503601593243 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_3627081943831604566 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_9665402120168518720 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_17512877336748015006 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_2698180320597485833 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_6935166826977859820 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_4716653137522907339 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_17696839143252144782 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_662868907071858795 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_411118355228250966 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_16775323247585467751 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_5221214442615509164 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_8887671076163629621 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_9645736261369225669 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_6565244294508881507 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_1532072938796113736 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_15159799094035916075 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_12224847682062792877 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_5629707955983561100 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_18051841058555828220 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_12312461599848926 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_17257764860339119961 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:21:32              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:21:33                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_2_vlan_tag Begin
03/11/2020 10:21:33              dut.10.67.xxx.xxx: 
03/11/2020 10:21:33                         tester: 
03/11/2020 10:21:33              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
03/11/2020 10:21:34              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_4093697959728024603 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_18276247337234179465 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_2679637403718465940 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_5095426726265500592 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_12458974763728168195 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_12981858406970260176 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_10610538017635858829 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_10446279796808770815 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_7075931005834248460 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_13653419711770829873 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_10567687509486234261 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_1776115788972140665 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_4511140843638920055 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_18195189534696707698 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_13534408171288647384 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_247441548120888736 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_12508397459633917230 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_12398402321768285120 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_5417424008924409582 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_14989712578870477601 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_9395750207851898412 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_2474292247234325136 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_7686285777011377445 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_13743596342309054854 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_2049508211901424706 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_12458852169547778112 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_7083217970066349687 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_17725996742296395482 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_13949611496298726836 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_16642875456322461330 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_15261356607235547232 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_10514386636082021500 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_597124910656317230 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_17603650403132480792 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_13356163235424275208 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_6712741508977114378 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_14209638697785025568 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_10264350794290436904 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_9615826270186559107 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_3451139202185211378 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_2505884987158846322 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_6872070480946466147 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_6438653911222141040 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_479911884751153921 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_367014676952224285 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_9226586289619854439 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_12372092080523911542 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_15170264049582983743 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_16449709678938631971 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_17578830046718348473 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_11750762704292536397 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_12600410987455657307 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_6197471650429514096 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_13794766401965803126 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_6751165922788578493 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_12480545085835463914 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_5722719766974409318 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_16699052671800673301 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_11457084912716355654 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_5321469485404694679 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_971897543440028394 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_129906472619874694 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_16892681004474383672 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_1046030580850858715 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_1637851718263717491 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_6922821913044757908 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_6115893124755960918 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_3698819843628810710 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_13524985496979603903 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_4413502840944270795 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_5621979030420446813 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_15080430514582169571 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_762279476283867451 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_10315547544205813430 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_4472241046488141446 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_11574440555695325090 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_11482279063077283459 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_7547897846330740177 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_1147344932314773886 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_12213273560696623496 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_13745469898856198305 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_371019276507853470 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_7694588302431151775 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_15531307080563765754 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_16747845236405969644 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_11939637002440372407 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_13267032530076772306 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_5718332439911487951 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_1032107195462691496 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_10054549285643667438 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_16431825644005193383 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_6865422676468908494 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_5414561651408639602 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_10807125785734078682 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_2557063909979177730 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_14979629855633010391 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_8766067324507229400 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_3979950231770228835 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_615876079889756922 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_6630760406512920753 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_4143564839321686845 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_7899906077010854195 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_7957014519449192503 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_4857672274697766420 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_17533205190786837180 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_11366063690894341630 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_4103447972229030690 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_5628714399610111427 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_1720447773747779871 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_14046500166962551854 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_1737468596842575641 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_16099442973228563524 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_1417796052424002619 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_1994184294073589108 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_18286101960347470826 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_2749677002399229843 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_5660739642734376748 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_6870007185207172938 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_10564969945973158522 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_1926741058267348814 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_9627650731874439983 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_8609148781203706814 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_11308883182875644179 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_936869207737133572 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_16068920713998023966 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_12627910611747280996 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_5725905293022543953 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_4667424224193751624 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_7345964956562537304 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_2075839390840367098 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_16404322035352341992 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_17947824353633914009 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:21:44              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:21:44              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:21:44              dut.10.67.xxx.xxx: start
03/11/2020 10:21:44              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:21:48              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:21:52              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:21:55              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:21:59              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:22:02              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:22:06              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:22:10              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:22:13              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:22:17              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:22:20              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:22:20                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_2_vlan_tag Result PASSED:
03/11/2020 10:22:20              dut.10.67.xxx.xxx: quit
03/11/2020 10:22:22              dut.10.67.xxx.xxx: 

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_18276247337234179465 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_2679637403718465940 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_5095426726265500592 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_12458974763728168195 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_12981858406970260176 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_10610538017635858829 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_10446279796808770815 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_7075931005834248460 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_13653419711770829873 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_10567687509486234261 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_1776115788972140665 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_4511140843638920055 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_18195189534696707698 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_13534408171288647384 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_247441548120888736 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_12508397459633917230 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_12398402321768285120 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_5417424008924409582 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_14989712578870477601 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_9395750207851898412 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_2474292247234325136 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_7686285777011377445 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_13743596342309054854 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_2049508211901424706 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_12458852169547778112 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_7083217970066349687 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_17725996742296395482 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_13949611496298726836 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_16642875456322461330 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_15261356607235547232 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_10514386636082021500 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_597124910656317230 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_4093697959728024603 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_13356163235424275208 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_6712741508977114378 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_14209638697785025568 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_10264350794290436904 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_9615826270186559107 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_3451139202185211378 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_2505884987158846322 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_6872070480946466147 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_6438653911222141040 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_479911884751153921 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_367014676952224285 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_9226586289619854439 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_12372092080523911542 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_15170264049582983743 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_16449709678938631971 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_17578830046718348473 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_11750762704292536397 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_12600410987455657307 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_6197471650429514096 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_13794766401965803126 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_6751165922788578493 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_12480545085835463914 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_5722719766974409318 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_16699052671800673301 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_11457084912716355654 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_5321469485404694679 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_971897543440028394 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_129906472619874694 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_16892681004474383672 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_1046030580850858715 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_1637851718263717491 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_6922821913044757908 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_17603650403132480792 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_3698819843628810710 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_13524985496979603903 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_4413502840944270795 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_5621979030420446813 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_15080430514582169571 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_762279476283867451 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_10315547544205813430 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_4472241046488141446 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_11574440555695325090 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_11482279063077283459 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_7547897846330740177 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_1147344932314773886 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_12213273560696623496 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_13745469898856198305 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_371019276507853470 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_7694588302431151775 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_15531307080563765754 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_16747845236405969644 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_11939637002440372407 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_13267032530076772306 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_5718332439911487951 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_1032107195462691496 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_10054549285643667438 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_16431825644005193383 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_6865422676468908494 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_5414561651408639602 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_10807125785734078682 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_2557063909979177730 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_14979629855633010391 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_8766067324507229400 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_3979950231770228835 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_615876079889756922 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_6115893124755960918 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_4143564839321686845 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_7899906077010854195 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_7957014519449192503 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_4857672274697766420 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_17533205190786837180 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_11366063690894341630 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_4103447972229030690 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_5628714399610111427 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_1720447773747779871 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_14046500166962551854 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_1737468596842575641 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_16099442973228563524 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_1417796052424002619 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_1994184294073589108 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_18286101960347470826 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_2749677002399229843 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_5660739642734376748 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_6870007185207172938 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_10564969945973158522 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_1926741058267348814 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_9627650731874439983 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_8609148781203706814 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_11308883182875644179 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_936869207737133572 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_16068920713998023966 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_12627910611747280996 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_5725905293022543953 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_4667424224193751624 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_7345964956562537304 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_2075839390840367098 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_16404322035352341992 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_17947824353633914009 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_6630760406512920753 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:22:24              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:22:24                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_vlan_tag Begin
03/11/2020 10:22:24              dut.10.67.xxx.xxx: 
03/11/2020 10:22:24                         tester: 
03/11/2020 10:22:24              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
03/11/2020 10:22:26              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_10053000807537584032 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_17432042185963488780 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_15678148461000017031 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_10402341551250475260 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_17324392684562246622 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_59549756820858830 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_3266214863277571275 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_17498102616697747021 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_15870912703979319949 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_13892084058284494316 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_15319592418697724907 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_15540016672244162191 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_4790082152544852724 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_11935233544313878060 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_15986479137626171964 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_3509047399458486011 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_17152363540877995340 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_5567012549286952697 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_553554095837798023 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_2209514631933482937 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_6496180181887911041 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_6677488707839693355 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_15040669480635235265 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_4667459142111617598 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_11489449386948977463 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_16542185853382711955 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_7119495395012892492 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_7708712101628631880 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_2602787235437919424 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_3833794335798778938 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_404301309191378291 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_15993237153556933524 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_15889706222745606812 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_11985111365953454586 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_11537834271546931522 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_3739603255314387696 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_17905649468206831843 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_2496439253182792221 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_328871775110926741 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_15704704010040129623 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_577469577344715508 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_17870450285276423396 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_18147598914611795116 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_14872846557265934389 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_15216867326247821564 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_7903146503156256412 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_9466341077111406473 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_6114429059294065948 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_12955725815313217722 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_7139850973587028973 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_8799866324248296690 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_922559293182074758 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_12028273304139485428 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_14030394156569694990 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_9434222515310153145 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_1086720852621530403 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_13997487510271783490 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_16904878278463096821 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_8818809206581771654 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_13187086211795501250 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_1180444956715403461 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_1898930870575017931 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_5286082333888828073 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_5763114359046068533 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_1199259705001925971 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_4860644166609079824 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_16561325483009211695 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_13812161936579161365 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_7133180657578897290 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_13469646134153555153 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_4608571464345384266 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_9972526877520459509 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_15987042188796933130 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_12501198900914469711 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_631968307916505436 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_18399662958200407567 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_3025054258904533276 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_15450478463892671465 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_14143874967330673742 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_7548877759349375503 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_7945760580867323036 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_8699043317542202347 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_17459669805522120588 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_4124492116399574496 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_18046050311603564848 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_16397204845869484715 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_6461534896225022929 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_12985286334833807138 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_11300434950980065655 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_8627371069865490429 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_8052195464011379790 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_3303379110672843133 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_2758139150104607433 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_12651388453503558768 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_13225240177294818868 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_13816983996393487369 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_13600034954446730279 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_17063201041396807259 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_1843143759060998026 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_69051145118273379 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_1438785782308394100 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_11847775445237333725 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_4336450863768591795 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_5112739688537721482 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_3362068241072339220 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_13691453667999738285 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_6853597407527502724 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_3678628848562457841 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_13998821406198455994 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_6555240314454812558 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_4800049825444267939 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_9896588875223025831 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_13095647099223455213 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_16982809269047562997 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_3975851545097804465 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_7863008367763548575 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_6798699106749403626 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_8233011405885391625 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_11295502824467232533 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_6307448853289336086 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_10495858843294273894 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_4941991919489476744 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_6325975649926619565 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_3695362559184177677 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_11987657052263267149 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_6617632284047535363 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_2343235247198123041 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_17734357875198689685 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_2425746723282726549 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_605287825564200534 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_1497178571203996341 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_572166423565394900 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:22:36              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:22:36              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:22:36              dut.10.67.xxx.xxx: start
03/11/2020 10:22:36              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:22:39              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:22:43              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:22:47              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:22:50              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:22:54              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:22:57              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:23:01              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:23:05              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:23:08              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:23:12              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:23:12                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_vlan_tag Result PASSED:
03/11/2020 10:23:12              dut.10.67.xxx.xxx: quit
03/11/2020 10:23:13              dut.10.67.xxx.xxx: 

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_17432042185963488780 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_15678148461000017031 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_10402341551250475260 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_17324392684562246622 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_59549756820858830 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_3266214863277571275 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_17498102616697747021 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_15870912703979319949 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_13892084058284494316 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_15319592418697724907 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_15540016672244162191 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_4790082152544852724 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_11935233544313878060 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_15986479137626171964 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_3509047399458486011 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_17152363540877995340 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_5567012549286952697 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_553554095837798023 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_2209514631933482937 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_6496180181887911041 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_6677488707839693355 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_15040669480635235265 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_4667459142111617598 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_11489449386948977463 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_16542185853382711955 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_7119495395012892492 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_7708712101628631880 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_2602787235437919424 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_3833794335798778938 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_404301309191378291 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_15993237153556933524 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_15889706222745606812 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_10053000807537584032 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_11537834271546931522 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_3739603255314387696 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_17905649468206831843 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_2496439253182792221 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_328871775110926741 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_15704704010040129623 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_577469577344715508 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_17870450285276423396 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_18147598914611795116 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_14872846557265934389 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_15216867326247821564 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_7903146503156256412 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_9466341077111406473 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_6114429059294065948 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_12955725815313217722 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_7139850973587028973 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_8799866324248296690 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_922559293182074758 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_12028273304139485428 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_14030394156569694990 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_9434222515310153145 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_1086720852621530403 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_13997487510271783490 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_16904878278463096821 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_8818809206581771654 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_13187086211795501250 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_1180444956715403461 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_1898930870575017931 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_5286082333888828073 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_5763114359046068533 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_1199259705001925971 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_4860644166609079824 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_11985111365953454586 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_13812161936579161365 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_7133180657578897290 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_13469646134153555153 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_4608571464345384266 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_9972526877520459509 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_15987042188796933130 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_12501198900914469711 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_631968307916505436 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_18399662958200407567 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_3025054258904533276 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_15450478463892671465 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_14143874967330673742 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_7548877759349375503 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_7945760580867323036 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_8699043317542202347 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_17459669805522120588 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_4124492116399574496 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_18046050311603564848 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_16397204845869484715 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_6461534896225022929 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_12985286334833807138 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_11300434950980065655 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_8627371069865490429 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_8052195464011379790 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_3303379110672843133 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_2758139150104607433 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_12651388453503558768 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_13225240177294818868 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_13816983996393487369 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_13600034954446730279 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_17063201041396807259 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_1843143759060998026 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_16561325483009211695 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_1438785782308394100 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_11847775445237333725 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_4336450863768591795 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_5112739688537721482 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_3362068241072339220 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_13691453667999738285 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_6853597407527502724 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_3678628848562457841 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_13998821406198455994 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_6555240314454812558 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_4800049825444267939 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_9896588875223025831 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_13095647099223455213 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_16982809269047562997 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_3975851545097804465 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_7863008367763548575 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_6798699106749403626 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_8233011405885391625 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_11295502824467232533 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_6307448853289336086 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_10495858843294273894 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_4941991919489476744 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_6325975649926619565 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_3695362559184177677 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_11987657052263267149 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_6617632284047535363 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_2343235247198123041 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_17734357875198689685 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_2425746723282726549 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_605287825564200534 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_1497178571203996341 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_572166423565394900 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_69051145118273379 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:23:15              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:23:15                TestFlexibleRxd: Test Case test_check_ip_offset_with_vlan Begin
03/11/2020 10:23:16              dut.10.67.xxx.xxx: 
03/11/2020 10:23:16                         tester: 
03/11/2020 10:23:16              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
03/11/2020 10:23:17              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_11574206751377598402 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_3857800820188974861 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_5583559290416898133 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_2734461668457695032 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_15405227313226013666 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_16807468820683737128 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_10722018693758633450 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_5656818147896703955 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_7098223857391507135 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_16122199924860584324 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_9917251605664113262 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_11007622765555886544 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_4007017923835532679 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_4429127983877959659 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_18392221426981532543 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_14309653415843836144 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_6619033745675172930 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_5009169954139853247 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_1513935387606249503 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_2235180456602883339 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_1423990173988366795 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_13180705524996087542 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_13378407725188572222 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_815584791947325704 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_17695395816020345037 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_934685304287013395 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_4171167121579676532 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_14335846118301311672 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_10023218650652081784 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_15759640442131618440 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_14370845149213514232 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_18273245433280983792 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_12639791856160188087 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_5832787363808783796 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_2854696938498765893 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_10823440501418204729 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_2549941415017189601 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_12566440558652516906 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_958095982675384998 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_13413017462499412200 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_13783186883384958041 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_6273885435297478406 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_17890991117027120188 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_12772939467177465839 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_5512516574205068157 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_11518386162215426636 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_17559280042466539151 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_1892866526312709457 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_9078051092563239645 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_10918328390590754143 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_14438717827441933924 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_16622327739683613388 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_16232810715290672496 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_2694787526744080770 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_2919282020983166917 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_3964835465021274671 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_6983345570828935748 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_2792460883889213348 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_5101639349279395337 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_17844722199001564456 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_18402439176984675284 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_18282821568051360898 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_8798685493780836526 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_1819512402125294986 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_1725193280139383796 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_1392047064281618646 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_4626915244690136157 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_5215828245517118848 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_15011281118851956447 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_4347467787816747592 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_15434467896637051155 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_6831284745563350650 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_14111431948951006314 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_2469769752598830436 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_7851219847567166259 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_9411653694504390886 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_14897304299056857440 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_16563636222212417743 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_11884808289476052037 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_4963027296318248342 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_12993817005054228789 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_13466795896618972014 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_6188704077778066500 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_3827913079496329928 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_12623299671317124897 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_7959165841045972764 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_14448695197152493138 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_1063220683176210635 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_15854721619635771052 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_16427040412678421241 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_8651682307038583232 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_10437744809539623456 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_2213221564103204630 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_5342715085061012506 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_4856162078306600716 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_11919074061326405837 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_5981043519614082272 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_13140018183691971397 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_2085067858134343792 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_17745488270683114349 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_14707221468134460043 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_12203407159377568641 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_463675452986880606 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_11376978274478427784 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_3520850712346775537 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_11143049853431702672 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_15938637764311680068 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_15206948743865922888 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_8258593015177966901 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_11932363359290036371 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_10479280997218778497 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_6753658165772982076 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_10837947421692998554 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_3499983815440244257 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_13254128081269460604 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_976904927629008324 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_17931179194411227594 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_2371263700827317767 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_1099785185951932326 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_13599617411438013210 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_4487803616955158899 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_10496870767960866771 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_13913833069882006553 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_2761034924983967682 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_16632351405496406234 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_12983643676578301264 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_4354764348226667288 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_16760996435814819069 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_565735876280445465 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_6116410314552134209 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_11540509143990985232 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_3292386226699200458 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:23:27              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:23:27              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:23:27              dut.10.67.xxx.xxx: start
03/11/2020 10:23:27              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:23:31              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:23:34              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:23:34                TestFlexibleRxd: Test Case test_check_ip_offset_with_vlan Result PASSED:
03/11/2020 10:23:34              dut.10.67.xxx.xxx: quit
03/11/2020 10:23:35              dut.10.67.xxx.xxx: 

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_3857800820188974861 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_5583559290416898133 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_2734461668457695032 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_15405227313226013666 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_16807468820683737128 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_10722018693758633450 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_5656818147896703955 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_7098223857391507135 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_16122199924860584324 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_9917251605664113262 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_11007622765555886544 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_4007017923835532679 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_4429127983877959659 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_18392221426981532543 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_14309653415843836144 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_6619033745675172930 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_5009169954139853247 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_1513935387606249503 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_2235180456602883339 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_1423990173988366795 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_13180705524996087542 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_13378407725188572222 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_815584791947325704 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_17695395816020345037 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_934685304287013395 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_4171167121579676532 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_14335846118301311672 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_10023218650652081784 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_15759640442131618440 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_14370845149213514232 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_18273245433280983792 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_12639791856160188087 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_11574206751377598402 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_2854696938498765893 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_10823440501418204729 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_2549941415017189601 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_12566440558652516906 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_958095982675384998 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_13413017462499412200 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_13783186883384958041 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_6273885435297478406 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_17890991117027120188 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_12772939467177465839 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_5512516574205068157 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_11518386162215426636 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_17559280042466539151 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_1892866526312709457 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_9078051092563239645 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_10918328390590754143 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_14438717827441933924 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_16622327739683613388 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_16232810715290672496 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_2694787526744080770 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_2919282020983166917 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_3964835465021274671 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_6983345570828935748 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_2792460883889213348 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_5101639349279395337 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_17844722199001564456 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_18402439176984675284 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_18282821568051360898 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_8798685493780836526 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_1819512402125294986 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_1725193280139383796 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_1392047064281618646 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_5832787363808783796 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_5215828245517118848 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_15011281118851956447 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_4347467787816747592 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_15434467896637051155 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_6831284745563350650 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_14111431948951006314 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_2469769752598830436 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_7851219847567166259 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_9411653694504390886 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_14897304299056857440 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_16563636222212417743 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_11884808289476052037 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_4963027296318248342 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_12993817005054228789 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_13466795896618972014 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_6188704077778066500 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_3827913079496329928 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_12623299671317124897 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_7959165841045972764 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_14448695197152493138 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_1063220683176210635 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_15854721619635771052 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_16427040412678421241 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_8651682307038583232 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_10437744809539623456 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_2213221564103204630 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_5342715085061012506 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_4856162078306600716 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_11919074061326405837 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_5981043519614082272 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_13140018183691971397 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_2085067858134343792 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_4626915244690136157 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_14707221468134460043 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_12203407159377568641 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_463675452986880606 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_11376978274478427784 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_3520850712346775537 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_11143049853431702672 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_15938637764311680068 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_15206948743865922888 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_8258593015177966901 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_11932363359290036371 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_10479280997218778497 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_6753658165772982076 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_10837947421692998554 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_3499983815440244257 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_13254128081269460604 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_976904927629008324 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_17931179194411227594 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_2371263700827317767 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_1099785185951932326 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_13599617411438013210 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_4487803616955158899 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_10496870767960866771 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_13913833069882006553 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_2761034924983967682 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_16632351405496406234 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_12983643676578301264 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_4354764348226667288 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_16760996435814819069 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_565735876280445465 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_6116410314552134209 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_11540509143990985232 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_3292386226699200458 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_17745488270683114349 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:23:37              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:23:38                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021Q Begin
03/11/2020 10:23:38              dut.10.67.xxx.xxx: 
03/11/2020 10:23:38                         tester: 
03/11/2020 10:23:38              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
03/11/2020 10:23:40              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_10302591108663253605 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_9175130151927499689 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_6666847465644215836 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_17597510096964483542 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_14441077007168902979 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_9388204983587025093 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_16828325416786560061 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_9353030964973796013 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_725236206405920222 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_6463929923433866397 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_8370912684861911392 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_15560105570964965433 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_12450408356576539723 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_11667512024245120370 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_16008206727546312660 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_3920050268590166615 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_15876659228759811606 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_1194606040612679011 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_13205645454847264888 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_7785937845542157265 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_15292782862888597668 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_1790637380750236034 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_16747533112837229918 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_6867535505752312889 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_17689333386691758430 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_5236364759148095813 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_5988838160731528066 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_15735396881123131153 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_13657326532338304345 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_1886210988441050322 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_3486372398792609515 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_4498761690893991319 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_9307521262988420466 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_6514811259491795737 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_5595087653552329966 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_2264447477420839365 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_5545402132866884553 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_5618016810023374908 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_8350914172702663940 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_3191626087943614610 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_7805994430796285921 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_12585183791370044411 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_16713600541891997970 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_10425686007854539062 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_7742526124609803611 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_14201811548615746896 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_17042585177755650810 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_4018440803682947060 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_5014612500219872680 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_13465249500847626193 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_5899292463746866333 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_16185835521117506430 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_14490754487751369077 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_14095273510740981694 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_1441915707713628992 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_6899542383253900738 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_15530490508159706095 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_12874978392279359715 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_12246613413725378175 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_704439359105517405 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_12955379159292501368 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_14138725475200286964 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_14300753077889704333 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_14945043418582866468 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_16617429730865856509 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_14283982959023592303 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_11932661085868138903 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_10869301351782391356 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_17526130215007117427 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_12396184479865524301 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_15134615877619841843 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_13350439285954578736 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_5023127791041348671 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_1482788540751006840 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_9544021473729305302 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_10654467374506748323 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_1544899278478797332 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_11245675652616802988 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_4045380385198644222 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_18134255842668677011 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_16621565983327026352 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_16217664150865866782 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_11133935320120656521 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_6470027578298930992 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_5857321258322685026 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_10332847291815244780 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_10546437338894982013 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_12042940469478789386 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_15776163098127525654 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_12558964673197735092 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_14558102961231869530 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_439597412617740854 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_8837750803788590973 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_13771243814104275263 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_4319772210752584938 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_2780589546910703381 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_3170592320774910363 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_5686341561727042975 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_7964549400828493422 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_11397294960296351928 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_4233031952937473535 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_7396414658610844316 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_7621217017317440146 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_8088376498249620647 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_841254028264416348 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_10884802676479351137 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_5650615178660624074 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_11521873035264887677 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_3788493545832119549 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_8231518712423434835 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_17653927273630293879 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_16538224705220990189 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_17561829360543699266 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_11519031001951336253 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_6106988115597675548 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_926890064609336837 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_1485545991343997499 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_13558741319561188503 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_6695803922232675467 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_16597349669741740897 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_13041253744357281013 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_14427793496002609130 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_12902519797181509218 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_6099840436962991990 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_14552141110142006291 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_931960994785022007 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_17977144966930091938 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_9231400624927859352 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_1665649055870348969 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_16293636596525915264 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_2257160625143856131 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_6313140990159882039 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:23:50              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:23:50              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:23:50              dut.10.67.xxx.xxx: set fwd io
03/11/2020 10:23:50              dut.10.67.xxx.xxx: 

Set io packet forwarding mode
03/11/2020 10:23:50              dut.10.67.xxx.xxx: set promisc all off
03/11/2020 10:23:50              dut.10.67.xxx.xxx: 
03/11/2020 10:23:50              dut.10.67.xxx.xxx: clear port stats all
03/11/2020 10:23:50              dut.10.67.xxx.xxx: 

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
03/11/2020 10:23:50              dut.10.67.xxx.xxx: start
03/11/2020 10:23:50              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:23:53              dut.10.67.xxx.xxx: port 0/queue 28: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x37f7369c - RSS queue=0x1c - 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=0x1c
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

03/11/2020 10:23:53                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021Q Result PASSED:
03/11/2020 10:23:53              dut.10.67.xxx.xxx: quit
03/11/2020 10:23:55              dut.10.67.xxx.xxx: 

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

  ------- Forward Stats for RX Port= 0/Queue=28 -> TX Port= 0/Queue=28 -------
  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_9175130151927499689 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_6666847465644215836 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_17597510096964483542 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_14441077007168902979 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_9388204983587025093 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_16828325416786560061 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_9353030964973796013 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_725236206405920222 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_6463929923433866397 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_8370912684861911392 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_15560105570964965433 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_12450408356576539723 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_11667512024245120370 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_16008206727546312660 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_3920050268590166615 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_15876659228759811606 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_1194606040612679011 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_13205645454847264888 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_7785937845542157265 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_15292782862888597668 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_1790637380750236034 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_16747533112837229918 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_6867535505752312889 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_17689333386691758430 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_5236364759148095813 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_5988838160731528066 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_15735396881123131153 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_13657326532338304345 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_1886210988441050322 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_3486372398792609515 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_4498761690893991319 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_9307521262988420466 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_10302591108663253605 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_5595087653552329966 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_2264447477420839365 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_5545402132866884553 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_5618016810023374908 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_8350914172702663940 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_3191626087943614610 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_7805994430796285921 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_12585183791370044411 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_16713600541891997970 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_10425686007854539062 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_7742526124609803611 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_14201811548615746896 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_17042585177755650810 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_4018440803682947060 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_5014612500219872680 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_13465249500847626193 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_5899292463746866333 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_16185835521117506430 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_14490754487751369077 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_14095273510740981694 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_1441915707713628992 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_6899542383253900738 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_15530490508159706095 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_12874978392279359715 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_12246613413725378175 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_704439359105517405 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_12955379159292501368 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_14138725475200286964 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_14300753077889704333 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_14945043418582866468 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_16617429730865856509 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_14283982959023592303 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_6514811259491795737 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_10869301351782391356 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_17526130215007117427 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_12396184479865524301 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_15134615877619841843 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_13350439285954578736 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_5023127791041348671 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_1482788540751006840 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_9544021473729305302 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_10654467374506748323 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_1544899278478797332 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_11245675652616802988 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_4045380385198644222 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_18134255842668677011 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_16621565983327026352 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_16217664150865866782 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_11133935320120656521 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_6470027578298930992 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_5857321258322685026 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_10332847291815244780 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_10546437338894982013 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_12042940469478789386 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_15776163098127525654 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_12558964673197735092 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_14558102961231869530 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_439597412617740854 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_8837750803788590973 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_13771243814104275263 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_4319772210752584938 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_2780589546910703381 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_3170592320774910363 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_5686341561727042975 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_7964549400828493422 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_11932661085868138903 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_4233031952937473535 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_7396414658610844316 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_7621217017317440146 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_8088376498249620647 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_841254028264416348 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_10884802676479351137 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_5650615178660624074 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_11521873035264887677 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_3788493545832119549 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_8231518712423434835 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_17653927273630293879 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_16538224705220990189 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_17561829360543699266 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_11519031001951336253 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_6106988115597675548 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_926890064609336837 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_1485545991343997499 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_13558741319561188503 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_6695803922232675467 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_16597349669741740897 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_13041253744357281013 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_14427793496002609130 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_12902519797181509218 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_6099840436962991990 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_14552141110142006291 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_931960994785022007 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_17977144966930091938 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_9231400624927859352 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_1665649055870348969 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_16293636596525915264 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_2257160625143856131 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_6313140990159882039 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_11397294960296351928 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:23:57              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:23:57                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021ad Begin
03/11/2020 10:23:57              dut.10.67.xxx.xxx: 
03/11/2020 10:23:57                         tester: 
03/11/2020 10:23:57              dut.10.67.xxx.xxx: 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_6775_20201027151505   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
03/11/2020 10:23:59              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_6775_20201027151505/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_2271962216745569692 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_2375432719728065958 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_4753443834527636979 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_4590761827250626079 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_1702758304974612951 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_11517970249781371848 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_6711980766212627811 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_1214323372372434538 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_17935797787783174924 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_12713889550574907883 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_5201754777921800539 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_15677875972117593553 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_4263949713824941273 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_16419396550987053506 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_13380575303732975 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_18229368939437513467 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_14869988874351941189 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_13450266107737712434 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_16572839336682232885 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_1324838507275556315 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_14299612360018724187 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_18320070691596759887 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_9149567810045270806 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_8545291115260707500 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_2179577887203570552 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_314589473576557191 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_16567982428070237835 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_14849141438458720702 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_444864925682659081 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_5406249592302518217 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_9380599415045143468 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_7417160931658908850 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_6512958953083255124 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_10061705787198515694 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_18118265476043711805 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_8466410400887340291 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_15582784246688882662 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_6655435293416871972 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_15756657083735327992 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_15121068406814535945 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_9791144833124398839 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_14947528551811379256 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_7272270366829055828 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_10426209215899655289 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_9172772605816423790 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_6506631595216043080 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_4792638633935886464 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_12936096092212698750 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_7109725353281675288 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_9129704838370908000 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_7392156322479779565 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_6415939356144793711 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_11325138596877544377 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_13590023936429746947 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_9389559814671538387 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_3520998487677070565 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_8967383691675286093 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_8081187495093617891 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_16576785079430276702 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_18140675757093021912 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_8065841143181581182 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_17105436304493833746 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_10633962002417465394 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_9979810013211817670 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_7292112976572631155 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_2081921372164904826 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_14374153623997425220 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_17286814246844245804 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_15869643360846663150 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_483156714070633663 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_17220918756009223546 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_5230277678925096546 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_10327063895291555445 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_10507501585884568274 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_17549875403920532083 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_16469664074335851690 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_15268152188027461153 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_16219633536979011788 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_3909093019989828436 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_14396275899040160936 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_858627624850901557 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_7311420406621045604 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_11783208809031687149 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_3505570594893256260 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_5492156332143953439 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_13622314094343193260 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_1464964082708704164 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_854503012024087640 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_9039691140717643840 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_15893432625870463970 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_5913667734725229616 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_3598077406645154414 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_2219516191175111515 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_15466819079582746208 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_12234001712136960055 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_1920833500766515806 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_1830742301964518642 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_13134692033506481823 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_17116647701118374225 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_12138735343617881137 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_6169645174150983575 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_12876768961345724912 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_78026353055857469 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_9744209253664858719 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_6541731334667655504 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_18400372157924907735 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_2870553120404242612 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_12480056251690677358 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_2022797938410837278 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_2155599619126536566 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_5620948410145232028 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_15695906835898018598 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_9717320155366046962 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_16582167487003178145 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_9603574286848903246 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_4423779875232508929 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_2440141506896379742 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_12799534143038774243 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_1728428270502553982 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_12230629485803971765 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_15923413286834881501 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_15128633407443417390 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_4216417809060433855 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_16021850426976445684 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_18072684537392363870 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_2570252673712160485 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_9817915201070511474 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_2859291329447901874 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_5887291921949192280 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_2884771995529066688 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_5000344340613020913 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_11456819374803575651 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 API 1.7
ice_init_proto_xtr(): Protocol extraction metadata offset in mbuf is : 112
ice_init_proto_xtr(): Protocol extraction offload 'ice_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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:24:09              dut.10.67.xxx.xxx: set verbose 1
03/11/2020 10:24:09              dut.10.67.xxx.xxx: 

Change verbose level from 0 to 1
03/11/2020 10:24:09              dut.10.67.xxx.xxx: set fwd io
03/11/2020 10:24:09              dut.10.67.xxx.xxx: 

Set io packet forwarding mode
03/11/2020 10:24:09              dut.10.67.xxx.xxx: set promisc all off
03/11/2020 10:24:09              dut.10.67.xxx.xxx: 
03/11/2020 10:24:09              dut.10.67.xxx.xxx: clear port stats all
03/11/2020 10:24:09              dut.10.67.xxx.xxx: 

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
03/11/2020 10:24:09              dut.10.67.xxx.xxx: start
03/11/2020 10:24:09              dut.10.67.xxx.xxx: 

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 ****************
03/11/2020 10:24:13              dut.10.67.xxx.xxx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:01 - dst=00:00:00:00:01:00 - 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 

03/11/2020 10:24:13                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021ad Result PASSED:
03/11/2020 10:24:13              dut.10.67.xxx.xxx: quit
03/11/2020 10:24:14              dut.10.67.xxx.xxx: 

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_2375432719728065958 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_4753443834527636979 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_4590761827250626079 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_1702758304974612951 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_11517970249781371848 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_6711980766212627811 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_1214323372372434538 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_17935797787783174924 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_12713889550574907883 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_5201754777921800539 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_15677875972117593553 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_4263949713824941273 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_16419396550987053506 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_13380575303732975 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_18229368939437513467 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_14869988874351941189 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_13450266107737712434 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_16572839336682232885 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_1324838507275556315 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_14299612360018724187 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_18320070691596759887 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_9149567810045270806 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_8545291115260707500 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_2179577887203570552 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_314589473576557191 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_16567982428070237835 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_14849141438458720702 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_444864925682659081 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_5406249592302518217 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_9380599415045143468 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_7417160931658908850 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_6512958953083255124 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_2271962216745569692 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_18118265476043711805 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_8466410400887340291 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_15582784246688882662 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_6655435293416871972 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_15756657083735327992 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_15121068406814535945 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_9791144833124398839 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_14947528551811379256 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_7272270366829055828 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_10426209215899655289 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_9172772605816423790 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_6506631595216043080 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_4792638633935886464 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_12936096092212698750 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_7109725353281675288 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_9129704838370908000 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_7392156322479779565 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_6415939356144793711 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_11325138596877544377 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_13590023936429746947 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_9389559814671538387 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_3520998487677070565 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_8967383691675286093 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_8081187495093617891 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_16576785079430276702 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_18140675757093021912 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_8065841143181581182 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_17105436304493833746 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_10633962002417465394 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_9979810013211817670 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_7292112976572631155 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_2081921372164904826 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_10061705787198515694 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_17286814246844245804 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_15869643360846663150 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_483156714070633663 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_17220918756009223546 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_5230277678925096546 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_10327063895291555445 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_10507501585884568274 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_17549875403920532083 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_16469664074335851690 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_15268152188027461153 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_16219633536979011788 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_3909093019989828436 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_14396275899040160936 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_858627624850901557 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_7311420406621045604 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_11783208809031687149 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_3505570594893256260 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_5492156332143953439 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_13622314094343193260 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_1464964082708704164 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_854503012024087640 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_9039691140717643840 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_15893432625870463970 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_5913667734725229616 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_3598077406645154414 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_2219516191175111515 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_15466819079582746208 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_12234001712136960055 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_1920833500766515806 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_1830742301964518642 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_13134692033506481823 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_17116647701118374225 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_14374153623997425220 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_6169645174150983575 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_12876768961345724912 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_78026353055857469 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_9744209253664858719 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_6541731334667655504 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_18400372157924907735 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_2870553120404242612 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_12480056251690677358 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_2022797938410837278 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_2155599619126536566 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_5620948410145232028 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_15695906835898018598 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_9717320155366046962 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_16582167487003178145 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_9603574286848903246 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_4423779875232508929 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_2440141506896379742 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_12799534143038774243 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_1728428270502553982 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_12230629485803971765 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_15923413286834881501 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_15128633407443417390 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_4216417809060433855 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_16021850426976445684 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_18072684537392363870 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_2570252673712160485 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_9817915201070511474 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_2859291329447901874 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_5887291921949192280 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_2884771995529066688 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_5000344340613020913 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_11456819374803575651 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_12138735343617881137 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:24:16              dut.10.67.xxx.xxx: kill_all: called by dut and prefix list has value.
03/11/2020 10:24:16                TestFlexibleRxd: Test Case test_check_testpmd_use_different_parameters Begin
03/11/2020 10:24:17              dut.10.67.xxx.xxx: 
03/11/2020 10:24:17                         tester: 
03/11/2020 10:24:17              dut.10.67.xxx.xxx: 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
03/11/2020 10:24:18              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) 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.
EAL: No legacy callbacks, legacy socket not created
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
03/11/2020 10:24:18              dut.10.67.xxx.xxx: 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
03/11/2020 10:24:19              dut.10.67.xxx.xxx: EAL: Detected 112 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:159b) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_11211066098032144389 allocated with physical address: 6442129536
ice_alloc_dma_mem(): memzone ice_dma_5912775311824011012 allocated with physical address: 6442123904
ice_alloc_dma_mem(): memzone ice_dma_8068360138791525400 allocated with physical address: 6442119680
ice_alloc_dma_mem(): memzone ice_dma_5113970931480002984 allocated with physical address: 6442115456
ice_alloc_dma_mem(): memzone ice_dma_14395047076595868149 allocated with physical address: 6442111232
ice_alloc_dma_mem(): memzone ice_dma_7807430403641354490 allocated with physical address: 6442107008
ice_alloc_dma_mem(): memzone ice_dma_7836392313974430082 allocated with physical address: 6442102784
ice_alloc_dma_mem(): memzone ice_dma_15416239868030494410 allocated with physical address: 6442098560
ice_alloc_dma_mem(): memzone ice_dma_550566120895126591 allocated with physical address: 6442094336
ice_alloc_dma_mem(): memzone ice_dma_6569927342723034119 allocated with physical address: 6442090112
ice_alloc_dma_mem(): memzone ice_dma_11151475363799661080 allocated with physical address: 6442085888
ice_alloc_dma_mem(): memzone ice_dma_3639846629493120668 allocated with physical address: 6442081664
ice_alloc_dma_mem(): memzone ice_dma_11926451146045681957 allocated with physical address: 6442077440
ice_alloc_dma_mem(): memzone ice_dma_1994341569792320384 allocated with physical address: 6442073216
ice_alloc_dma_mem(): memzone ice_dma_12289841918272762823 allocated with physical address: 6442068992
ice_alloc_dma_mem(): memzone ice_dma_8830522177107618877 allocated with physical address: 6442064768
ice_alloc_dma_mem(): memzone ice_dma_17558062216282476219 allocated with physical address: 6442060544
ice_alloc_dma_mem(): memzone ice_dma_8248667763451198239 allocated with physical address: 6442056320
ice_alloc_dma_mem(): memzone ice_dma_7667553815409927718 allocated with physical address: 6442052096
ice_alloc_dma_mem(): memzone ice_dma_10397167484183882310 allocated with physical address: 6442047872
ice_alloc_dma_mem(): memzone ice_dma_15737119813204690553 allocated with physical address: 6442043648
ice_alloc_dma_mem(): memzone ice_dma_12254565829971522231 allocated with physical address: 6442039424
ice_alloc_dma_mem(): memzone ice_dma_7416627795105894207 allocated with physical address: 6442035200
ice_alloc_dma_mem(): memzone ice_dma_3985407957319593648 allocated with physical address: 6442030976
ice_alloc_dma_mem(): memzone ice_dma_15995318497807119706 allocated with physical address: 6442026752
ice_alloc_dma_mem(): memzone ice_dma_6362858427193741689 allocated with physical address: 6442022528
ice_alloc_dma_mem(): memzone ice_dma_5911660575768661668 allocated with physical address: 6442018304
ice_alloc_dma_mem(): memzone ice_dma_13698907233266712011 allocated with physical address: 6442014080
ice_alloc_dma_mem(): memzone ice_dma_16572152465031373350 allocated with physical address: 6442009856
ice_alloc_dma_mem(): memzone ice_dma_14449426851760131535 allocated with physical address: 6442005632
ice_alloc_dma_mem(): memzone ice_dma_2383578837553520523 allocated with physical address: 6442001408
ice_alloc_dma_mem(): memzone ice_dma_729522824215204044 allocated with physical address: 6441997184
ice_alloc_dma_mem(): memzone ice_dma_16871523926044893905 allocated with physical address: 6441992960
ice_alloc_dma_mem(): memzone ice_dma_555514264300696031 allocated with physical address: 6441991808
ice_alloc_dma_mem(): memzone ice_dma_11473867038975128280 allocated with physical address: 6441986560
ice_alloc_dma_mem(): memzone ice_dma_8788601790444384942 allocated with physical address: 6441982336
ice_alloc_dma_mem(): memzone ice_dma_14008897019557118594 allocated with physical address: 6441978112
ice_alloc_dma_mem(): memzone ice_dma_16409601874065147357 allocated with physical address: 6441973888
ice_alloc_dma_mem(): memzone ice_dma_2324601592982447468 allocated with physical address: 6441969664
ice_alloc_dma_mem(): memzone ice_dma_7154299086073282646 allocated with physical address: 6441965440
ice_alloc_dma_mem(): memzone ice_dma_3789260018490195885 allocated with physical address: 6441961216
ice_alloc_dma_mem(): memzone ice_dma_2766562663155727136 allocated with physical address: 6441956992
ice_alloc_dma_mem(): memzone ice_dma_17942099060164019322 allocated with physical address: 6441952768
ice_alloc_dma_mem(): memzone ice_dma_14666032492192046930 allocated with physical address: 6441948544
ice_alloc_dma_mem(): memzone ice_dma_171458352310832703 allocated with physical address: 6441944320
ice_alloc_dma_mem(): memzone ice_dma_5020663898707261269 allocated with physical address: 6441940096
ice_alloc_dma_mem(): memzone ice_dma_18440687130036417387 allocated with physical address: 6441935872
ice_alloc_dma_mem(): memzone ice_dma_10221601265260982392 allocated with physical address: 6441931648
ice_alloc_dma_mem(): memzone ice_dma_5398019643051751923 allocated with physical address: 6441927424
ice_alloc_dma_mem(): memzone ice_dma_7472635980171409416 allocated with physical address: 6441923200
ice_alloc_dma_mem(): memzone ice_dma_689929230280732341 allocated with physical address: 6441918976
ice_alloc_dma_mem(): memzone ice_dma_5207857564367412101 allocated with physical address: 6441914752
ice_alloc_dma_mem(): memzone ice_dma_9509147281576328733 allocated with physical address: 6441910528
ice_alloc_dma_mem(): memzone ice_dma_3822952177403691787 allocated with physical address: 6441906304
ice_alloc_dma_mem(): memzone ice_dma_7605268844685917564 allocated with physical address: 6441902080
ice_alloc_dma_mem(): memzone ice_dma_17688881029303345500 allocated with physical address: 6441897856
ice_alloc_dma_mem(): memzone ice_dma_13594793603869591377 allocated with physical address: 6441893632
ice_alloc_dma_mem(): memzone ice_dma_15471532115006264164 allocated with physical address: 6441889408
ice_alloc_dma_mem(): memzone ice_dma_6910052937763566245 allocated with physical address: 6441885184
ice_alloc_dma_mem(): memzone ice_dma_1484176812865483355 allocated with physical address: 6441880960
ice_alloc_dma_mem(): memzone ice_dma_5726141627001335399 allocated with physical address: 6441876736
ice_alloc_dma_mem(): memzone ice_dma_14809768424058234405 allocated with physical address: 6441872512
ice_alloc_dma_mem(): memzone ice_dma_2809646227680869914 allocated with physical address: 6441868288
ice_alloc_dma_mem(): memzone ice_dma_14862845151316467525 allocated with physical address: 6441864064
ice_alloc_dma_mem(): memzone ice_dma_12630518084839178682 allocated with physical address: 6441859840
ice_alloc_dma_mem(): memzone ice_dma_16929424372362712544 allocated with physical address: 6441855616
ice_alloc_dma_mem(): memzone ice_dma_16977646227946439519 allocated with physical address: 6441854464
ice_alloc_dma_mem(): memzone ice_dma_16127545187635593046 allocated with physical address: 6441848832
ice_alloc_dma_mem(): memzone ice_dma_5604430074767154862 allocated with physical address: 6441844608
ice_alloc_dma_mem(): memzone ice_dma_13645738321744026301 allocated with physical address: 6441840384
ice_alloc_dma_mem(): memzone ice_dma_4649635050645720072 allocated with physical address: 6441836160
ice_alloc_dma_mem(): memzone ice_dma_6587050374324351340 allocated with physical address: 6441831936
ice_alloc_dma_mem(): memzone ice_dma_9897119292826241985 allocated with physical address: 6441827712
ice_alloc_dma_mem(): memzone ice_dma_4142967265539376867 allocated with physical address: 6441823488
ice_alloc_dma_mem(): memzone ice_dma_18098715521050661324 allocated with physical address: 6441819264
ice_alloc_dma_mem(): memzone ice_dma_17042682606323102629 allocated with physical address: 6441815040
ice_alloc_dma_mem(): memzone ice_dma_6610494901189278611 allocated with physical address: 6441810816
ice_alloc_dma_mem(): memzone ice_dma_7829326057309299074 allocated with physical address: 6441806592
ice_alloc_dma_mem(): memzone ice_dma_3496347907863426251 allocated with physical address: 6441802368
ice_alloc_dma_mem(): memzone ice_dma_9726623595938576282 allocated with physical address: 6441798144
ice_alloc_dma_mem(): memzone ice_dma_1183513496245196888 allocated with physical address: 6441793920
ice_alloc_dma_mem(): memzone ice_dma_4924558846128581416 allocated with physical address: 6441789696
ice_alloc_dma_mem(): memzone ice_dma_5898251333785201707 allocated with physical address: 6441785472
ice_alloc_dma_mem(): memzone ice_dma_17185930631652258010 allocated with physical address: 6441781248
ice_alloc_dma_mem(): memzone ice_dma_2716376604745971231 allocated with physical address: 6441777024
ice_alloc_dma_mem(): memzone ice_dma_1974869033620052701 allocated with physical address: 6441772800
ice_alloc_dma_mem(): memzone ice_dma_15615225318541380355 allocated with physical address: 6441768576
ice_alloc_dma_mem(): memzone ice_dma_14270653361508082200 allocated with physical address: 6441764352
ice_alloc_dma_mem(): memzone ice_dma_7058485926655123624 allocated with physical address: 6441760128
ice_alloc_dma_mem(): memzone ice_dma_15178425667467842411 allocated with physical address: 6441755904
ice_alloc_dma_mem(): memzone ice_dma_5705508858128429885 allocated with physical address: 6441751680
ice_alloc_dma_mem(): memzone ice_dma_8669991914092894495 allocated with physical address: 6441747456
ice_alloc_dma_mem(): memzone ice_dma_3621077827152662435 allocated with physical address: 6441743232
ice_alloc_dma_mem(): memzone ice_dma_2052825489559834780 allocated with physical address: 6441739008
ice_alloc_dma_mem(): memzone ice_dma_4345916688693765881 allocated with physical address: 6441734784
ice_alloc_dma_mem(): memzone ice_dma_6132239351835915593 allocated with physical address: 6441730560
ice_alloc_dma_mem(): memzone ice_dma_9473785784670109827 allocated with physical address: 6441726336
ice_alloc_dma_mem(): memzone ice_dma_12812037965403649854 allocated with physical address: 6441722112
ice_alloc_dma_mem(): memzone ice_dma_4957109523478172330 allocated with physical address: 6441717888
ice_alloc_dma_mem(): memzone ice_dma_217640137341495350 allocated with physical address: 6441716736
ice_alloc_dma_mem(): memzone ice_dma_13575397613784746097 allocated with physical address: 6441711488
ice_alloc_dma_mem(): memzone ice_dma_13956481213538468737 allocated with physical address: 6441707264
ice_alloc_dma_mem(): memzone ice_dma_6300783711211971141 allocated with physical address: 6441703040
ice_alloc_dma_mem(): memzone ice_dma_17134589139107924467 allocated with physical address: 6441698816
ice_alloc_dma_mem(): memzone ice_dma_12665194018070567560 allocated with physical address: 6441694592
ice_alloc_dma_mem(): memzone ice_dma_10526018719283378156 allocated with physical address: 6441690368
ice_alloc_dma_mem(): memzone ice_dma_6193955526540260148 allocated with physical address: 6441686144
ice_alloc_dma_mem(): memzone ice_dma_8887930804046905367 allocated with physical address: 6441681920
ice_alloc_dma_mem(): memzone ice_dma_17109922761995114227 allocated with physical address: 6441677696
ice_alloc_dma_mem(): memzone ice_dma_9140871644079510617 allocated with physical address: 6441673472
ice_alloc_dma_mem(): memzone ice_dma_13422136327629174873 allocated with physical address: 6441669248
ice_alloc_dma_mem(): memzone ice_dma_10393215761142426890 allocated with physical address: 6441665024
ice_alloc_dma_mem(): memzone ice_dma_17096074935045971787 allocated with physical address: 6441660800
ice_alloc_dma_mem(): memzone ice_dma_6362715265042775503 allocated with physical address: 6441656576
ice_alloc_dma_mem(): memzone ice_dma_11087100919720058381 allocated with physical address: 6441652352
ice_alloc_dma_mem(): memzone ice_dma_10901238218642423155 allocated with physical address: 6441648128
ice_alloc_dma_mem(): memzone ice_dma_8454429454155407925 allocated with physical address: 6441643904
ice_alloc_dma_mem(): memzone ice_dma_8747875246840637136 allocated with physical address: 6441639680
ice_alloc_dma_mem(): memzone ice_dma_2686670042469078386 allocated with physical address: 6441635456
ice_alloc_dma_mem(): memzone ice_dma_15772426489857241596 allocated with physical address: 6441631232
ice_alloc_dma_mem(): memzone ice_dma_2637953908489367202 allocated with physical address: 6441627008
ice_alloc_dma_mem(): memzone ice_dma_12080406763576170185 allocated with physical address: 6441622784
ice_alloc_dma_mem(): memzone ice_dma_17291665595023401066 allocated with physical address: 6441618560
ice_alloc_dma_mem(): memzone ice_dma_3897873437035969944 allocated with physical address: 6441614336
ice_alloc_dma_mem(): memzone ice_dma_3568213915270966732 allocated with physical address: 6441610112
ice_alloc_dma_mem(): memzone ice_dma_10079803583572331321 allocated with physical address: 6441605888
ice_alloc_dma_mem(): memzone ice_dma_10067540637822250395 allocated with physical address: 6441601664
ice_alloc_dma_mem(): memzone ice_dma_14830464555700591097 allocated with physical address: 6441597440
ice_alloc_dma_mem(): memzone ice_dma_859128430099223402 allocated with physical address: 6441593216
ice_alloc_dma_mem(): memzone ice_dma_15944665217529880291 allocated with physical address: 6441588992
ice_alloc_dma_mem(): memzone ice_dma_4974942049655206612 allocated with physical address: 6441584768
ice_alloc_dma_mem(): memzone ice_dma_12278017843737977760 allocated with physical address: 6441580544
ice_load_pkg_type(): Active package is: 1.3.22.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1088936389 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.
EAL: No legacy callbacks, legacy socket not created
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: 00:00:00:00:01:00
Checking link statuses...
Done
03/11/2020 10:24:19              dut.10.67.xxx.xxx: quit
03/11/2020 10:24:21              dut.10.67.xxx.xxx: 


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_5912775311824011012 to be freed with physical address: 6442123904
ice_free_dma_mem(): memzone ice_dma_8068360138791525400 to be freed with physical address: 6442119680
ice_free_dma_mem(): memzone ice_dma_5113970931480002984 to be freed with physical address: 6442115456
ice_free_dma_mem(): memzone ice_dma_14395047076595868149 to be freed with physical address: 6442111232
ice_free_dma_mem(): memzone ice_dma_7807430403641354490 to be freed with physical address: 6442107008
ice_free_dma_mem(): memzone ice_dma_7836392313974430082 to be freed with physical address: 6442102784
ice_free_dma_mem(): memzone ice_dma_15416239868030494410 to be freed with physical address: 6442098560
ice_free_dma_mem(): memzone ice_dma_550566120895126591 to be freed with physical address: 6442094336
ice_free_dma_mem(): memzone ice_dma_6569927342723034119 to be freed with physical address: 6442090112
ice_free_dma_mem(): memzone ice_dma_11151475363799661080 to be freed with physical address: 6442085888
ice_free_dma_mem(): memzone ice_dma_3639846629493120668 to be freed with physical address: 6442081664
ice_free_dma_mem(): memzone ice_dma_11926451146045681957 to be freed with physical address: 6442077440
ice_free_dma_mem(): memzone ice_dma_1994341569792320384 to be freed with physical address: 6442073216
ice_free_dma_mem(): memzone ice_dma_12289841918272762823 to be freed with physical address: 6442068992
ice_free_dma_mem(): memzone ice_dma_8830522177107618877 to be freed with physical address: 6442064768
ice_free_dma_mem(): memzone ice_dma_17558062216282476219 to be freed with physical address: 6442060544
ice_free_dma_mem(): memzone ice_dma_8248667763451198239 to be freed with physical address: 6442056320
ice_free_dma_mem(): memzone ice_dma_7667553815409927718 to be freed with physical address: 6442052096
ice_free_dma_mem(): memzone ice_dma_10397167484183882310 to be freed with physical address: 6442047872
ice_free_dma_mem(): memzone ice_dma_15737119813204690553 to be freed with physical address: 6442043648
ice_free_dma_mem(): memzone ice_dma_12254565829971522231 to be freed with physical address: 6442039424
ice_free_dma_mem(): memzone ice_dma_7416627795105894207 to be freed with physical address: 6442035200
ice_free_dma_mem(): memzone ice_dma_3985407957319593648 to be freed with physical address: 6442030976
ice_free_dma_mem(): memzone ice_dma_15995318497807119706 to be freed with physical address: 6442026752
ice_free_dma_mem(): memzone ice_dma_6362858427193741689 to be freed with physical address: 6442022528
ice_free_dma_mem(): memzone ice_dma_5911660575768661668 to be freed with physical address: 6442018304
ice_free_dma_mem(): memzone ice_dma_13698907233266712011 to be freed with physical address: 6442014080
ice_free_dma_mem(): memzone ice_dma_16572152465031373350 to be freed with physical address: 6442009856
ice_free_dma_mem(): memzone ice_dma_14449426851760131535 to be freed with physical address: 6442005632
ice_free_dma_mem(): memzone ice_dma_2383578837553520523 to be freed with physical address: 6442001408
ice_free_dma_mem(): memzone ice_dma_729522824215204044 to be freed with physical address: 6441997184
ice_free_dma_mem(): memzone ice_dma_16871523926044893905 to be freed with physical address: 6441992960
ice_free_dma_mem(): memzone ice_dma_11211066098032144389 to be freed with physical address: 6442129536
ice_free_dma_mem(): memzone ice_dma_11473867038975128280 to be freed with physical address: 6441986560
ice_free_dma_mem(): memzone ice_dma_8788601790444384942 to be freed with physical address: 6441982336
ice_free_dma_mem(): memzone ice_dma_14008897019557118594 to be freed with physical address: 6441978112
ice_free_dma_mem(): memzone ice_dma_16409601874065147357 to be freed with physical address: 6441973888
ice_free_dma_mem(): memzone ice_dma_2324601592982447468 to be freed with physical address: 6441969664
ice_free_dma_mem(): memzone ice_dma_7154299086073282646 to be freed with physical address: 6441965440
ice_free_dma_mem(): memzone ice_dma_3789260018490195885 to be freed with physical address: 6441961216
ice_free_dma_mem(): memzone ice_dma_2766562663155727136 to be freed with physical address: 6441956992
ice_free_dma_mem(): memzone ice_dma_17942099060164019322 to be freed with physical address: 6441952768
ice_free_dma_mem(): memzone ice_dma_14666032492192046930 to be freed with physical address: 6441948544
ice_free_dma_mem(): memzone ice_dma_171458352310832703 to be freed with physical address: 6441944320
ice_free_dma_mem(): memzone ice_dma_5020663898707261269 to be freed with physical address: 6441940096
ice_free_dma_mem(): memzone ice_dma_18440687130036417387 to be freed with physical address: 6441935872
ice_free_dma_mem(): memzone ice_dma_10221601265260982392 to be freed with physical address: 6441931648
ice_free_dma_mem(): memzone ice_dma_5398019643051751923 to be freed with physical address: 6441927424
ice_free_dma_mem(): memzone ice_dma_7472635980171409416 to be freed with physical address: 6441923200
ice_free_dma_mem(): memzone ice_dma_689929230280732341 to be freed with physical address: 6441918976
ice_free_dma_mem(): memzone ice_dma_5207857564367412101 to be freed with physical address: 6441914752
ice_free_dma_mem(): memzone ice_dma_9509147281576328733 to be freed with physical address: 6441910528
ice_free_dma_mem(): memzone ice_dma_3822952177403691787 to be freed with physical address: 6441906304
ice_free_dma_mem(): memzone ice_dma_7605268844685917564 to be freed with physical address: 6441902080
ice_free_dma_mem(): memzone ice_dma_17688881029303345500 to be freed with physical address: 6441897856
ice_free_dma_mem(): memzone ice_dma_13594793603869591377 to be freed with physical address: 6441893632
ice_free_dma_mem(): memzone ice_dma_15471532115006264164 to be freed with physical address: 6441889408
ice_free_dma_mem(): memzone ice_dma_6910052937763566245 to be freed with physical address: 6441885184
ice_free_dma_mem(): memzone ice_dma_1484176812865483355 to be freed with physical address: 6441880960
ice_free_dma_mem(): memzone ice_dma_5726141627001335399 to be freed with physical address: 6441876736
ice_free_dma_mem(): memzone ice_dma_14809768424058234405 to be freed with physical address: 6441872512
ice_free_dma_mem(): memzone ice_dma_2809646227680869914 to be freed with physical address: 6441868288
ice_free_dma_mem(): memzone ice_dma_14862845151316467525 to be freed with physical address: 6441864064
ice_free_dma_mem(): memzone ice_dma_12630518084839178682 to be freed with physical address: 6441859840
ice_free_dma_mem(): memzone ice_dma_16929424372362712544 to be freed with physical address: 6441855616
ice_free_dma_mem(): memzone ice_dma_555514264300696031 to be freed with physical address: 6441991808
ice_free_dma_mem(): memzone ice_dma_16127545187635593046 to be freed with physical address: 6441848832
ice_free_dma_mem(): memzone ice_dma_5604430074767154862 to be freed with physical address: 6441844608
ice_free_dma_mem(): memzone ice_dma_13645738321744026301 to be freed with physical address: 6441840384
ice_free_dma_mem(): memzone ice_dma_4649635050645720072 to be freed with physical address: 6441836160
ice_free_dma_mem(): memzone ice_dma_6587050374324351340 to be freed with physical address: 6441831936
ice_free_dma_mem(): memzone ice_dma_9897119292826241985 to be freed with physical address: 6441827712
ice_free_dma_mem(): memzone ice_dma_4142967265539376867 to be freed with physical address: 6441823488
ice_free_dma_mem(): memzone ice_dma_18098715521050661324 to be freed with physical address: 6441819264
ice_free_dma_mem(): memzone ice_dma_17042682606323102629 to be freed with physical address: 6441815040
ice_free_dma_mem(): memzone ice_dma_6610494901189278611 to be freed with physical address: 6441810816
ice_free_dma_mem(): memzone ice_dma_7829326057309299074 to be freed with physical address: 6441806592
ice_free_dma_mem(): memzone ice_dma_3496347907863426251 to be freed with physical address: 6441802368
ice_free_dma_mem(): memzone ice_dma_9726623595938576282 to be freed with physical address: 6441798144
ice_free_dma_mem(): memzone ice_dma_1183513496245196888 to be freed with physical address: 6441793920
ice_free_dma_mem(): memzone ice_dma_4924558846128581416 to be freed with physical address: 6441789696
ice_free_dma_mem(): memzone ice_dma_5898251333785201707 to be freed with physical address: 6441785472
ice_free_dma_mem(): memzone ice_dma_17185930631652258010 to be freed with physical address: 6441781248
ice_free_dma_mem(): memzone ice_dma_2716376604745971231 to be freed with physical address: 6441777024
ice_free_dma_mem(): memzone ice_dma_1974869033620052701 to be freed with physical address: 6441772800
ice_free_dma_mem(): memzone ice_dma_15615225318541380355 to be freed with physical address: 6441768576
ice_free_dma_mem(): memzone ice_dma_14270653361508082200 to be freed with physical address: 6441764352
ice_free_dma_mem(): memzone ice_dma_7058485926655123624 to be freed with physical address: 6441760128
ice_free_dma_mem(): memzone ice_dma_15178425667467842411 to be freed with physical address: 6441755904
ice_free_dma_mem(): memzone ice_dma_5705508858128429885 to be freed with physical address: 6441751680
ice_free_dma_mem(): memzone ice_dma_8669991914092894495 to be freed with physical address: 6441747456
ice_free_dma_mem(): memzone ice_dma_3621077827152662435 to be freed with physical address: 6441743232
ice_free_dma_mem(): memzone ice_dma_2052825489559834780 to be freed with physical address: 6441739008
ice_free_dma_mem(): memzone ice_dma_4345916688693765881 to be freed with physical address: 6441734784
ice_free_dma_mem(): memzone ice_dma_6132239351835915593 to be freed with physical address: 6441730560
ice_free_dma_mem(): memzone ice_dma_9473785784670109827 to be freed with physical address: 6441726336
ice_free_dma_mem(): memzone ice_dma_12812037965403649854 to be freed with physical address: 6441722112
ice_free_dma_mem(): memzone ice_dma_4957109523478172330 to be freed with physical address: 6441717888
ice_free_dma_mem(): memzone ice_dma_16977646227946439519 to be freed with physical address: 6441854464
ice_free_dma_mem(): memzone ice_dma_13575397613784746097 to be freed with physical address: 6441711488
ice_free_dma_mem(): memzone ice_dma_13956481213538468737 to be freed with physical address: 6441707264
ice_free_dma_mem(): memzone ice_dma_6300783711211971141 to be freed with physical address: 6441703040
ice_free_dma_mem(): memzone ice_dma_17134589139107924467 to be freed with physical address: 6441698816
ice_free_dma_mem(): memzone ice_dma_12665194018070567560 to be freed with physical address: 6441694592
ice_free_dma_mem(): memzone ice_dma_10526018719283378156 to be freed with physical address: 6441690368
ice_free_dma_mem(): memzone ice_dma_6193955526540260148 to be freed with physical address: 6441686144
ice_free_dma_mem(): memzone ice_dma_8887930804046905367 to be freed with physical address: 6441681920
ice_free_dma_mem(): memzone ice_dma_17109922761995114227 to be freed with physical address: 6441677696
ice_free_dma_mem(): memzone ice_dma_9140871644079510617 to be freed with physical address: 6441673472
ice_free_dma_mem(): memzone ice_dma_13422136327629174873 to be freed with physical address: 6441669248
ice_free_dma_mem(): memzone ice_dma_10393215761142426890 to be freed with physical address: 6441665024
ice_free_dma_mem(): memzone ice_dma_17096074935045971787 to be freed with physical address: 6441660800
ice_free_dma_mem(): memzone ice_dma_6362715265042775503 to be freed with physical address: 6441656576
ice_free_dma_mem(): memzone ice_dma_11087100919720058381 to be freed with physical address: 6441652352
ice_free_dma_mem(): memzone ice_dma_10901238218642423155 to be freed with physical address: 6441648128
ice_free_dma_mem(): memzone ice_dma_8454429454155407925 to be freed with physical address: 6441643904
ice_free_dma_mem(): memzone ice_dma_8747875246840637136 to be freed with physical address: 6441639680
ice_free_dma_mem(): memzone ice_dma_2686670042469078386 to be freed with physical address: 6441635456
ice_free_dma_mem(): memzone ice_dma_15772426489857241596 to be freed with physical address: 6441631232
ice_free_dma_mem(): memzone ice_dma_2637953908489367202 to be freed with physical address: 6441627008
ice_free_dma_mem(): memzone ice_dma_12080406763576170185 to be freed with physical address: 6441622784
ice_free_dma_mem(): memzone ice_dma_17291665595023401066 to be freed with physical address: 6441618560
ice_free_dma_mem(): memzone ice_dma_3897873437035969944 to be freed with physical address: 6441614336
ice_free_dma_mem(): memzone ice_dma_3568213915270966732 to be freed with physical address: 6441610112
ice_free_dma_mem(): memzone ice_dma_10079803583572331321 to be freed with physical address: 6441605888
ice_free_dma_mem(): memzone ice_dma_10067540637822250395 to be freed with physical address: 6441601664
ice_free_dma_mem(): memzone ice_dma_14830464555700591097 to be freed with physical address: 6441597440
ice_free_dma_mem(): memzone ice_dma_859128430099223402 to be freed with physical address: 6441593216
ice_free_dma_mem(): memzone ice_dma_15944665217529880291 to be freed with physical address: 6441588992
ice_free_dma_mem(): memzone ice_dma_4974942049655206612 to be freed with physical address: 6441584768
ice_free_dma_mem(): memzone ice_dma_12278017843737977760 to be freed with physical address: 6441580544
ice_free_dma_mem(): memzone ice_dma_217640137341495350 to be freed with physical address: 6441716736
Port 0 is closed
Done

Bye...
03/11/2020 10:24:21                TestFlexibleRxd: Test Case test_check_testpmd_use_different_parameters Result PASSED:
03/11/2020 10:24:23              dut.10.67.xxx.xxx: kill_all: called by dut and has no prefix list.
03/11/2020 10:24:24                            dts: 
TEST SUITE ENDED: TestFlexibleRxd

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

* Re: [dts] [PATCH V5 2/2] flexible_rxd: add mpls test cases
  2020-11-03  2:04 ` [dts] [PATCH V5 2/2] flexible_rxd: add mpls test cases yufengmx
@ 2020-11-05  2:46   ` Ma, LihongX
  0 siblings, 0 replies; 5+ messages in thread
From: Ma, LihongX @ 2020-11-05  2:46 UTC (permalink / raw)
  To: Mo, YufengX, dts; +Cc: Mo, YufengX

Acked-by: Lihongx Ma<lihongx.ma@intel.com>

Regards,
Ma,lihong

> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of yufengmx
> Sent: Tuesday, November 3, 2020 10:04 AM
> To: dts@dpdk.org
> Cc: Mo, YufengX <yufengx.mo@intel.com>
> Subject: [dts] [PATCH V5 2/2] flexible_rxd: add mpls test cases
> 
> 
> add mpls test cases.
> 
> Signed-off-by: yufengmx <yufengx.mo@intel.com>
> ---


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

end of thread, other threads:[~2020-11-05  2:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-03  2:04 [dts] [PATCH V5 0/2] flexible_rxd: add test cases for iavf/mpls yufengmx
2020-11-03  2:04 ` [dts] [PATCH V5 1/2] flexible_rxd: unify common test content yufengmx
2020-11-03  2:04 ` [dts] [PATCH V5 2/2] flexible_rxd: add mpls test cases yufengmx
2020-11-05  2:46   ` Ma, LihongX
2020-11-03  2:14 ` [dts] [PATCH V5 0/2] flexible_rxd: add test cases for iavf/mpls Mo, YufengX

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