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


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 V2 1/2] flexible_rxd: unify common test content
  2020-10-19  5:05 [dts] [PATCH V2 0/2] flexible_rxd: add test cases for iavf/mpls yufengmx
@ 2020-10-19  5:05 ` yufengmx
  2020-10-19  5:05 ` [dts] [PATCH V2 2/2] flexible_rxd: add mpls test cases yufengmx
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: yufengmx @ 2020-10-19  5:05 UTC (permalink / raw)
  To: dts, lihongx.ma; +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 V2 2/2] flexible_rxd: add mpls test cases
  2020-10-19  5:05 [dts] [PATCH V2 0/2] flexible_rxd: add test cases for iavf/mpls yufengmx
  2020-10-19  5:05 ` [dts] [PATCH V2 1/2] flexible_rxd: unify common test content yufengmx
@ 2020-10-19  5:05 ` yufengmx
  2020-10-19  5:12 ` [dts] [PATCH V2 0/2] flexible_rxd: add test cases for iavf/mpls Mo, YufengX
  2020-10-19  5:16 ` Ma, LihongX
  3 siblings, 0 replies; 5+ messages in thread
From: yufengmx @ 2020-10-19  5:05 UTC (permalink / raw)
  To: dts, lihongx.ma; +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..ca344f5 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 .",
+            """sed -i "/if dpdk_conf.has('RTE_LIBRTE_PDUMP')/i\deps += ['pmd_ice']" 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 V2 0/2] flexible_rxd: add test cases for iavf/mpls
  2020-10-19  5:05 [dts] [PATCH V2 0/2] flexible_rxd: add test cases for iavf/mpls yufengmx
  2020-10-19  5:05 ` [dts] [PATCH V2 1/2] flexible_rxd: unify common test content yufengmx
  2020-10-19  5:05 ` [dts] [PATCH V2 2/2] flexible_rxd: add mpls test cases yufengmx
@ 2020-10-19  5:12 ` Mo, YufengX
  2020-10-19  5:16 ` Ma, LihongX
  3 siblings, 0 replies; 5+ messages in thread
From: Mo, YufengX @ 2020-10-19  5:12 UTC (permalink / raw)
  To: dts, Ma, LihongX

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

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


> -----Original Message-----
> From: Mo, YufengX
> Sent: Monday, October 19, 2020 1:06 PM
> To: dts@dpdk.org; Ma, LihongX <lihongx.ma@intel.com>
> Cc: Mo, YufengX <yufengx.mo@intel.com>
> Subject: [dts][PATCH V2 0/2] flexible_rxd: add test cases for iavf/mpls


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

16/10/2020 16:43:50                            dts: 
TEST SUITE : TestFlexibleRxd
16/10/2020 16:43:50                            dts: NIC :        columbiaville_25g
16/10/2020 16:43:50              dut.10.240.xxx.xx: 
16/10/2020 16:43:50                         tester: 
16/10/2020 16:43:50              dut.10.240.xxx.xx: sed -i 's/CONFIG_RTE_EAL_IGB_UIO=n/CONFIG_RTE_EAL_IGB_UIO=y/g' config/common_base
16/10/2020 16:43:50              dut.10.240.xxx.xx: sed: can't read config/common_base: No such file or directory
16/10/2020 16:43:50              dut.10.240.xxx.xx: rm -rf x86_64-native-linuxapp-gcc
16/10/2020 16:43:51              dut.10.240.xxx.xx: 
16/10/2020 16:43:51              dut.10.240.xxx.xx: CC=gcc meson --werror -Denable_kmods=True  -Dlibdir=lib  --default-library=static x86_64-native-linuxapp-gcc
16/10/2020 16:43:58              dut.10.240.xxx.xx: The Meson build system
Version: 0.55.1
Source dir: /root/dpdk
Build dir: /root/dpdk/x86_64-native-linuxapp-gcc
Build type: native build
Program cat found: YES
Project name: DPDK
Project version: 20.11.0-rc0
Using 'CC' from environment with value: 'gcc'
Using 'CC' from environment with value: 'gcc'
C compiler for the host machine: gcc (gcc 9.3.0 "gcc (Ubuntu 9.3.0-10ubuntu2) 9.3.0")
C linker for the host machine: gcc ld.bfd 2.34
Host machine cpu family: x86_64
Host machine cpu: x86_64
Program pkg-config found: YES
Program gen-pmdinfo-cfile.sh found: YES
Program list-dir-globs.py found: YES
Program check-symbols.sh found: YES
Program options-ibverbs-static.sh found: YES
Program binutils-avx512-check.sh found: YES
Program python3 found: YES (/usr/bin/python3)
Program cat found: YES
Program ../buildtools/symlink-drivers-solibs.sh found: YES (/bin/sh /root/dpdk/config/../buildtools/symlink-drivers-solibs.sh)
Checking for size of "void *" : 8
Checking for size of "void *" : 8
Library m found: YES
Library numa found: YES
Has header "numaif.h" : YES 
Library libfdt found: YES
Has header "fdt.h" : YES 
Found pkg-config: /usr/bin/pkg-config (0.29.1)
Did not find CMake 'cmake'
Found CMake: NO
Run-time dependency libbsd found: NO (tried pkgconfig and cmake)
Run-time dependency libpcap found: YES 1.9.1
Has header "pcap.h" with dependency libpcap: YES 
Compiler for C supports arguments -Wextra: YES 
config/meson.build:228: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
Compiler for C supports arguments -Wcast-qual: YES 
Compiler for C supports arguments -Wdeprecated: YES 
Compiler for C supports arguments -Wformat-nonliteral: YES 
Compiler for C supports arguments -Wformat-security: YES 
Compiler for C supports arguments -Wmissing-declarations: YES 
Compiler for C supports arguments -Wmissing-prototypes: YES 
Compiler for C supports arguments -Wnested-externs: YES 
Compiler for C supports arguments -Wold-style-definition: YES 
Compiler for C supports arguments -Wpointer-arith: YES 
Compiler for C supports arguments -Wsign-compare: YES 
Compiler for C supports arguments -Wstrict-prototypes: YES 
Compiler for C supports arguments -Wundef: YES 
Compiler for C supports arguments -Wwrite-strings: YES 
Compiler for C supports arguments -Wno-address-of-packed-member -Waddress-of-packed-member: YES 
Compiler for C supports arguments -Wno-packed-not-aligned -Wpacked-not-aligned: YES 
Compiler for C supports arguments -Wno-missing-field-initializers -Wmissing-field-initializers: YES 
Fetching value of define "__SSE4_2__" : 1 
Fetching value of define "__AES__" : 1 
Fetching value of define "__AVX__" : 1 
Fetching value of define "__AVX2__" : 1 
Fetching value of define "__AVX512BW__" : 1 
Fetching value of define "__AVX512CD__" : 1 
Fetching value of define "__AVX512DQ__" : 1 
Fetching value of define "__AVX512F__" : 1 
Fetching value of define "__AVX512VL__" : 1 
Fetching value of define "__PCLMUL__" : 1 
Fetching value of define "__RDRND__" : 1 
Fetching value of define "__RDSEED__" : 1 
Fetching value of define "__VPCLMULQDQ__" :  
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES 
Message: lib/librte_kvargs: Defining dependency "kvargs"
Message: lib/librte_telemetry: Defining dependency "telemetry"
Checking for function "getentropy" : YES 
Message: lib/librte_eal: Defining dependency "eal"
Message: lib/librte_ring: Defining dependency "ring"
Message: lib/librte_rcu: Defining dependency "rcu"
Message: lib/librte_mempool: Defining dependency "mempool"
Message: lib/librte_mbuf: Defining dependency "mbuf"
Fetching value of define "__PCLMUL__" : 1 (cached)
Fetching value of define "__AVX512F__" : 1 (cached)
Fetching value of define "__AVX512BW__" : 1 (cached)
Fetching value of define "__AVX512DQ__" : 1 (cached)
Fetching value of define "__AVX512VL__" : 1 (cached)
Fetching value of define "__VPCLMULQDQ__" :  (cached)
Compiler for C supports arguments -mpclmul: YES 
Compiler for C supports arguments -maes: YES 
Compiler for C supports arguments -mavx512f: YES 
Compiler for C supports arguments -mavx512bw: YES 
Compiler for C supports arguments -mavx512dq: YES 
Compiler for C supports arguments -mavx512vl: YES 
Compiler for C supports arguments -mvpclmulqdq: YES 
Compiler for C supports arguments -mavx2: YES 
Compiler for C supports arguments -mavx: YES 
Message: lib/librte_net: Defining dependency "net"
Message: lib/librte_meter: Defining dependency "meter"
Message: lib/librte_ethdev: Defining dependency "ethdev"
Message: lib/librte_pci: Defining dependency "pci"
Message: lib/librte_cmdline: Defining dependency "cmdline"
Run-time dependency jansson found: 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: YES 0.176
Message: lib/librte_bpf: Defining dependency "bpf"
Message: lib/librte_graph: Defining dependency "graph"
Message: lib/librte_node: Defining dependency "node"
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Message: drivers/common/cpt: Defining dependency "common_cpt"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES 
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES 
Message: drivers/common/dpaax: Defining dependency "common_dpaax"
Compiler for C supports arguments -Wno-pointer-to-int-cast -Wpointer-to-int-cast: YES 
Message: drivers/common/iavf: Defining dependency "common_iavf"
Library libmusdk found: NO
Message: drivers/common/octeontx: Defining dependency "common_octeontx"
Message: drivers/common/octeontx2: Defining dependency "common_octeontx2"
Compiler for C supports arguments -Wdisabled-optimization: YES 
Compiler for C supports arguments -Waggregate-return: YES 
Compiler for C supports arguments -Wbad-function-cast: YES 
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES 
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES 
Message: drivers/common/sfc_efx: Defining dependency "common_sfc_efx"
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/bus/dpaa: Defining dependency "bus_dpaa"
Message: drivers/bus/fslmc: Defining dependency "bus_fslmc"
Message: drivers/bus/ifpga: Defining dependency "bus_ifpga"
Message: drivers/bus/pci: Defining dependency "bus_pci"
Message: drivers/bus/vdev: Defining dependency "bus_vdev"
Message: drivers/bus/vmbus: Defining dependency "bus_vmbus"
Compiler for C supports arguments -std=c11: YES 
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES 
Compiler for C supports arguments -D_BSD_SOURCE: YES 
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES 
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES 
Run-time dependency libmlx5 found: NO (tried pkgconfig and cmake)
Library mlx5 found: NO
Message: drivers/mempool/bucket: Defining dependency "mempool_bucket"
Message: drivers/mempool/dpaa: Defining dependency "mempool_dpaa"
Message: drivers/mempool/dpaa2: Defining dependency "mempool_dpaa2"
Message: drivers/mempool/octeontx: Defining dependency "mempool_octeontx"
Message: drivers/mempool/octeontx2: Defining dependency "mempool_octeontx2"
Message: drivers/mempool/ring: Defining dependency "mempool_ring"
Message: drivers/mempool/stack: Defining dependency "mempool_stack"
Message: drivers/net/af_packet: Defining dependency "pmd_af_packet"
Run-time dependency libbpf found: NO (tried pkgconfig and cmake)
Library bpf found: NO
Message: drivers/net/ark: Defining dependency "pmd_ark"
Message: drivers/net/atlantic: Defining dependency "pmd_atlantic"
Message: drivers/net/avp: Defining dependency "pmd_avp"
Message: drivers/net/axgbe: Defining dependency "pmd_axgbe"
Message: drivers/net/bonding: Defining dependency "pmd_bond"
Run-time dependency zlib found: YES 1.2.11
Message: drivers/net/bnx2x: Defining dependency "pmd_bnx2x"
Message: drivers/net/bnxt: Defining dependency "pmd_bnxt"
Message: drivers/net/cxgbe: Defining dependency "pmd_cxgbe"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/dpaa: Defining dependency "pmd_dpaa"
Message: drivers/net/dpaa2: Defining dependency "pmd_dpaa2"
Compiler for C supports arguments -Wno-uninitialized -Wuninitialized: YES 
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-misleading-indentation -Wmisleading-indentation: YES 
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES 
Message: drivers/net/e1000: Defining dependency "pmd_e1000"
Message: drivers/net/ena: Defining dependency "pmd_ena"
Message: drivers/net/enetc: Defining dependency "pmd_enetc"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/enic: Defining dependency "pmd_enic"
Message: drivers/net/failsafe: Defining dependency "pmd_failsafe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES 
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES 
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Message: drivers/net/fm10k: Defining dependency "pmd_fm10k"
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format -Wformat: YES 
Compiler for C supports arguments -Wno-format-security -Wformat-security: YES 
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES 
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/i40e: Defining dependency "pmd_i40e"
Message: drivers/net/hinic: Defining dependency "pmd_hinic"
Message: drivers/net/hns3: Defining dependency "pmd_hns3"
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/iavf: Defining dependency "pmd_iavf"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Fetching value of define "__AVX2__" : 1 (cached)
Message: drivers/net/ice: Defining dependency "pmd_ice"
Message: drivers/net/igc: Defining dependency "pmd_igc"
Message: drivers/net/ipn3ke: Defining dependency "pmd_ipn3ke"
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Message: drivers/net/ixgbe: Defining dependency "pmd_ixgbe"
Message: drivers/net/kni: Defining dependency "pmd_kni"
Message: drivers/net/liquidio: Defining dependency "pmd_liquidio"
Message: drivers/net/memif: Defining dependency "pmd_memif"
Run-time dependency libmlx4 found: NO (tried pkgconfig and cmake)
Library mlx4 found: NO
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/net/mlx5]: missing internal dependency "common_mlx5"
Library libmusdk found: NO
Library libmusdk found: NO
Message: drivers/net/netvsc: Defining dependency "pmd_netvsc"
Run-time dependency netcope-common found: NO (tried pkgconfig and cmake)
Message: drivers/net/nfp: Defining dependency "pmd_nfp"
Message: drivers/net/null: Defining dependency "pmd_null"
Message: drivers/net/octeontx: Defining dependency "pmd_octeontx"
Compiler for C supports arguments -flax-vector-conversions: YES 
Message: drivers/net/octeontx2: Defining dependency "pmd_octeontx2"
Message: drivers/net/pcap: Defining dependency "pmd_pcap"
Compiler for C supports arguments -Wno-pointer-arith -Wpointer-arith: YES (cached)
Message: drivers/net/pfe: Defining dependency "pmd_pfe"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-sign-compare -Wsign-compare: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES 
Compiler for C supports arguments -Wno-cast-qual -Wcast-qual: YES (cached)
Compiler for C supports arguments -Wno-unused-function -Wunused-function: YES 
Compiler for C supports arguments -Wno-unused-variable -Wunused-variable: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-missing-prototypes -Wmissing-prototypes: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES 
Compiler for C supports arguments -Wno-unused-but-set-variable -Wunused-but-set-variable: YES (cached)
Compiler for C supports arguments -Wno-missing-declarations -Wmissing-declarations: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES 
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -Wno-shift-negative-value -Wshift-negative-value: YES (cached)
Compiler for C supports arguments -Wno-implicit-fallthrough -Wimplicit-fallthrough: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Compiler for C supports arguments -Wno-visibility -Wvisibility: NO 
Compiler for C supports arguments -Wno-empty-body -Wempty-body: YES (cached)
Compiler for C supports arguments -Wno-invalid-source-encoding -Winvalid-source-encoding: NO 
Compiler for C supports arguments -Wno-sometimes-uninitialized -Wsometimes-uninitialized: NO 
Compiler for C supports arguments -Wno-pointer-bool-conversion -Wpointer-bool-conversion: NO 
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/net/qede: Defining dependency "pmd_qede"
Message: drivers/net/ring: Defining dependency "pmd_ring"
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wdisabled-optimization: YES (cached)
Compiler for C supports arguments -Waggregate-return: YES (cached)
Compiler for C supports arguments -Wbad-function-cast: YES (cached)
Message: drivers/net/sfc: Defining dependency "pmd_sfc"
Message: drivers/net/softnic: Defining dependency "pmd_softnic"
Run-time dependency libsze2 found: NO (tried pkgconfig and cmake)
Header <linux/pkt_cls.h> has symbol "TCA_FLOWER_UNSPEC" : YES 
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 "pmd_tap"
Compiler for C supports arguments -fno-prefetch-loop-arrays: YES 
Compiler for C supports arguments -Wno-maybe-uninitialized -Wmaybe-uninitialized: YES (cached)
Message: drivers/net/thunderx: Defining dependency "pmd_thunderx"
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: drivers/net/vdev_netvsc: Defining dependency "pmd_vdev_netvsc"
Message: drivers/net/vhost: Defining dependency "pmd_vhost"
Compiler for C supports arguments -mavx512f: YES (cached)
Compiler for C supports arguments -mavx512vl: YES (cached)
Compiler for C supports arguments -mavx512bw: YES (cached)
Message: drivers/net/virtio: Defining dependency "pmd_virtio"
Compiler for C supports arguments -Wno-unused-parameter -Wunused-parameter: YES (cached)
Compiler for C supports arguments -Wno-unused-value -Wunused-value: YES (cached)
Compiler for C supports arguments -Wno-strict-aliasing -Wstrict-aliasing: YES (cached)
Compiler for C supports arguments -Wno-format-extra-args -Wformat-extra-args: YES (cached)
Message: drivers/net/vmxnet3: Defining dependency "pmd_vmxnet3"
Message: drivers/raw/dpaa2_cmdif: Defining dependency "rawdev_dpaa2_cmdif"
Message: drivers/raw/dpaa2_qdma: Defining dependency "rawdev_dpaa2_qdma"
Message: drivers/raw/ifpga: Defining dependency "rawdev_ifpga"
Message: drivers/raw/ioat: Defining dependency "rawdev_ioat"
Message: drivers/raw/ntb: Defining dependency "rawdev_ntb"
Message: drivers/raw/octeontx2_dma: Defining dependency "rawdev_octeontx2_dma"
Message: drivers/raw/octeontx2_ep: Defining dependency "rawdev_octeontx2_ep"
Message: drivers/raw/skeleton: Defining dependency "rawdev_skeleton"
Library IPSec_MB found: NO
Library IPSec_MB found: NO
Message: drivers/crypto/caam_jr: Defining dependency "pmd_caam_jr"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/dpaa_sec: Defining dependency "pmd_dpaa_sec"
Message: drivers/crypto/dpaa2_sec: Defining dependency "pmd_dpaa2_sec"
Library IPSec_MB found: NO
Library libmusdk found: NO
Message: drivers/crypto/nitrox: Defining dependency "pmd_nitrox"
Message: drivers/crypto/null: Defining dependency "pmd_null_crypto"
Message: drivers/crypto/octeontx: Defining dependency "pmd_octeontx_crypto"
Message: drivers/crypto/octeontx2: Defining dependency "pmd_octeontx2_crypto"
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Run-time dependency libcrypto found: NO (tried pkgconfig and cmake)
Message: drivers/crypto/scheduler: Defining dependency "pmd_crypto_scheduler"
Library IPSec_MB found: NO
Message: drivers/crypto/virtio: Defining dependency "pmd_virtio_crypto"
Library IPSec_MB found: NO
Run-time dependency libisal found: NO (tried pkgconfig and cmake)
Message: drivers/compress/octeontx: Defining dependency "pmd_octeontx_compress"
Message: drivers/compress/qat: Defining dependency "pmd_qat"
Dependency zlib found: YES 1.2.11 (cached)
Message: drivers/compress/zlib: Defining dependency "pmd_zlib"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/regex/mlx5]: missing internal dependency "common_mlx5"
Library librxp_compiler found: NO
Message: drivers/regex/octeontx2: Defining dependency "pmd_octeontx2_regex"
Message: drivers/vdpa/ifc: Defining dependency "pmd_ifc"
Compiler for C supports arguments -std=c11: YES (cached)
Compiler for C supports arguments -Wno-strict-prototypes -Wstrict-prototypes: YES (cached)
Compiler for C supports arguments -D_BSD_SOURCE: YES (cached)
Compiler for C supports arguments -D_DEFAULT_SOURCE: YES (cached)
Compiler for C supports arguments -D_XOPEN_SOURCE=600: YES (cached)
Message: Disabling mlx5 [drivers/vdpa/mlx5]: missing internal dependency "common_mlx5"
Message: drivers/event/dpaa: Defining dependency "pmd_dpaa_event"
Message: drivers/event/dpaa2: Defining dependency "pmd_dpaa2_event"
Message: drivers/event/octeontx2: Defining dependency "pmd_octeontx2_event"
Message: drivers/event/opdl: Defining dependency "pmd_opdl_event"
Message: drivers/event/skeleton: Defining dependency "pmd_skeleton_event"
Message: drivers/event/sw: Defining dependency "pmd_sw_event"
Compiler for C supports arguments -Wno-format-nonliteral -Wformat-nonliteral: YES (cached)
Message: drivers/event/dsw: Defining dependency "pmd_dsw_event"
Message: drivers/event/octeontx: Defining dependency "pmd_octeontx_event"
Message: drivers/baseband/null: Defining dependency "pmd_bbdev_null"
Message: drivers/baseband/turbo_sw: Defining dependency "pmd_bbdev_turbo_sw"
Message: drivers/baseband/fpga_lte_fec: Defining dependency "pmd_bbdev_fpga_lte_fec"
Message: drivers/baseband/fpga_5gnr_fec: Defining dependency "pmd_bbdev_fpga_5gnr_fec"
Library execinfo found: NO
Compiler for C supports arguments -Wno-format-truncation -Wformat-truncation: YES (cached)
Dependency zlib found: YES 1.2.11 (cached)
Library execinfo found: NO
Message: hugepage availability: true
Program get-coremask.sh found: YES
Program doxygen found: NO
Program sphinx-build found: NO
Library execinfo found: NO
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, 
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, ipn3ke, 
	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, ifpga, ioat, ntb, octeontx2_dma, octeontx2_ep, skeleton, 
	
crypto:
	caam_jr, dpaa_sec, dpaa2_sec, nitrox, null_crypto, octeontx_crypto, octeontx2_crypto, crypto_scheduler, 
	virtio_crypto, 
compress:
	octeontx_compress, qat, zlib, 
regex:
	octeontx2_regex, 
vdpa:
	ifc, 
event:
	dpaa, dpaa2, octeontx2, opdl, skeleton, sw, dsw, octeontx, 
	
baseband:
	null, turbo_sw, fpga_lte_fec, fpga_5gnr_fec, 

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

libs:
	
drivers:
	common/mvep:	missing dependency, "libmusdk"
	common/mlx5:	missing dependency, "mlx5"
	net/af_xdp:	missing dependency, "libbpf"
	net/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"
	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: 976

Found ninja-1.10.0.git.kitware.jobserver-1 at /usr/local/bin/ninja
16/10/2020 16:43:58              dut.10.240.xxx.xx: ninja -C x86_64-native-linuxapp-gcc -j 70
16/10/2020 16:44:36              dut.10.240.xxx.xx: ninja: Entering directory `x86_64-native-linuxapp-gcc'
[1/2399] Generating rte_mempool_mingw with a custom command
[2/2399] Generating rte_kvargs_def with a custom command
[3/2399] Generating rte_kvargs_mingw with a custom command
[4/2399] Generating rte_telemetry_def with a custom command
[5/2399] Generating rte_telemetry_mingw with a custom command
[6/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hypervisor.c.o
[7/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_string_fns.c.o
[8/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_cpuflags.c.o
[9/2399] Generating rte_rcu_def with a custom command
[10/2399] Generating rte_eal_def with a custom command
[11/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_errno.c.o
[12/2399] Generating rte_eal_mingw with a custom command
[13/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_debug.c.o
[14/2399] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_spinlock.c.o
[15/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_class.c.o
[16/2399] Generating rte_rcu_mingw with a custom command
[17/2399] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_hypervisor.c.o
[18/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_config.c.o
[19/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_reciprocal.c.o
[20/2399] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cpuflags.c.o
[21/2399] Generating rte_ring_mingw with a custom command
[22/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_debug.c.o
[23/2399] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_timer.c.o
[24/2399] Generating rte_ring_def with a custom command
[25/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_cpuflags.c.o
[26/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_hexdump.c.o
[27/2399] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_data.c.o
[28/2399] Compiling C object lib/librte_kvargs.a.p/librte_kvargs_rte_kvargs.c.o
[29/2399] Generating rte_mempool_def with a custom command
[30/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_launch.c.o
[31/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_uuid.c.o
[32/2399] Linking static target lib/librte_kvargs.a
[33/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_log.c.o
[34/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio_mp_sync.c.o
[35/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_timer.c.o
[36/2399] Generating rte_mbuf_mingw with a custom command
[37/2399] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_file.c.o
[38/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_timer.c.o
[39/2399] Generating rte_mbuf_def with a custom command
[40/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_lcore.c.o
[41/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_keepalive.c.o
[42/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_tailqs.c.o
[43/2399] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry_legacy.c.o
[44/2399] Compiling C object lib/librte_eal.a.p/librte_eal_x86_rte_cycles.c.o
[45/2399] Generating rte_net_def with a custom command
[46/2399] Compiling C object lib/librte_eal.a.p/librte_eal_unix_eal_unix_memory.c.o
[47/2399] Generating rte_net_mingw with a custom command
[48/2399] Generating rte_meter_def with a custom command
[49/2399] Generating rte_meter_mingw with a custom command
[50/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_mcfg.c.o
[51/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_bus.c.o
[52/2399] Generating rte_ethdev_def with a custom command
[53/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memalloc.c.o
[54/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_thread.c.o
[55/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_log.c.o
[56/2399] Generating rte_ethdev_mingw with a custom command
[57/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_thread.c.o
[58/2399] Generating rte_pci_def with a custom command
[59/2399] Generating rte_pci_mingw with a custom command
[60/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_devargs.c.o
[61/2399] Compiling C object buildtools/pmdinfogen/pmdinfogen.p/pmdinfogen.c.o
[62/2399] Compiling C object lib/librte_net.a.p/librte_net_rte_net_crc.c.o
[63/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_hotplug_mp.c.o
[64/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_points.c.o
[65/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_ctf.c.o
[66/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_mp.c.o
[67/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_dev.c.o
[68/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memzone.c.o
[69/2399] Compiling C object lib/librte_ring.a.p/librte_ring_rte_ring.c.o
[70/2399] Linking target buildtools/pmdinfogen/pmdinfogen
[71/2399] Linking static target lib/librte_ring.a
[72/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dynmem.c.o
[73/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_alarm.c.o
[74/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace_utils.c.o
[75/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_lcore.c.o
[76/2399] Generating rte_cmdline_def with a custom command
[77/2399] Generating rte_cmdline_mingw with a custom command
[78/2399] Generating rte_metrics_def with a custom command
[79/2399] Generating rte_metrics_mingw with a custom command
[80/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_dev.c.o
[81/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_trace.c.o
[82/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_elem.c.o
[83/2399] Generating rte_hash_def with a custom command
[84/2399] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_vt100.c.o
[85/2399] Generating rte_hash_mingw with a custom command
[86/2399] Generating rte_timer_def with a custom command
[87/2399] Compiling C object lib/librte_pci.a.p/librte_pci_rte_pci.c.o
[88/2399] Generating rte_timer_mingw with a custom command
[89/2399] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_ipaddr.c.o
[90/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_hugepage_info.c.o
[91/2399] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_socket.c.o
[92/2399] Linking static target lib/librte_pci.a
[93/2399] Compiling C object lib/librte_meter.a.p/librte_meter_rte_meter.c.o
[94/2399] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_portlist.c.o
[95/2399] Linking static target lib/librte_meter.a
[96/2399] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline.c.o
[97/2399] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_os_unix.c.o
[98/2399] Generating rte_acl_mingw with a custom command
[99/2399] Generating rte_acl_def with a custom command
[100/2399] Compiling C object lib/librte_telemetry.a.p/librte_telemetry_telemetry.c.o
[101/2399] Generating rte_bbdev_def with a custom command
[102/2399] Linking static target lib/librte_telemetry.a
[103/2399] Generating rte_bbdev_mingw with a custom command
[104/2399] Generating rte_bitratestats_def with a custom command
[105/2399] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_num.c.o
[106/2399] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_string.c.o
[107/2399] Generating rte_bitratestats_mingw with a custom command
[108/2399] Generating rte_cfgfile_mingw with a custom command
[109/2399] Generating rte_cfgfile_def with a custom command
[110/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_memory.c.o
[111/2399] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_cirbuf.c.o
[112/2399] Generating rte_compressdev_mingw with a custom command
[113/2399] Generating rte_compressdev_def with a custom command
[114/2399] Generating rte_table_def with a custom command
[115/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_random.c.o
[116/2399] Compiling C object lib/librte_hash.a.p/librte_hash_rte_fbk_hash.c.o
[117/2399] Generating rte_table_mingw with a custom command
[118/2399] Generating rte_cryptodev_def with a custom command
[119/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_service.c.o
[120/2399] Compiling C object lib/librte_metrics.a.p/librte_metrics_rte_metrics.c.o
[121/2399] Generating rte_cryptodev_mingw with a custom command
[122/2399] Linking static target lib/librte_metrics.a
[123/2399] Generating rte_flow_classify_mingw with a custom command
[124/2399] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_pool_ops.c.o
[125/2399] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse.c.o
[126/2399] Compiling C object lib/librte_net.a.p/librte_net_net_crc_sse.c.o
[127/2399] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_rdline.c.o
[128/2399] Generating rte_distributor_mingw with a custom command
[129/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_fbarray.c.o
[130/2399] Generating rte_distributor_def with a custom command
[131/2399] Generating kvargs.sym_chk with a meson_exe.py custom command
[132/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_proc.c.o
[133/2399] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops_default.c.o
[134/2399] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev_pmd.c.o
[135/2399] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_profile.c.o
[136/2399] Generating rte_efd_def with a custom command
[137/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_interrupts.c.o
[138/2399] Generating rte_efd_mingw with a custom command
[139/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal.c.o
[140/2399] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_ptype.c.o
[141/2399] Generating rte_eventdev_def with a custom command
[142/2399] Generating rte_eventdev_mingw with a custom command
[143/2399] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool_ops.c.o
[144/2399] Compiling C object lib/librte_mempool.a.p/librte_mempool_mempool_trace_points.c.o
[145/2399] Linking target lib/librte_kvargs.so.21.0
[146/2399] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_private.c.o
[147/2399] Compiling C object lib/librte_net/libnet_crc_avx512_lib.a.p/net_crc_avx512.c.o
[148/2399] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_ethdev_trace_points.c.o
[149/2399] Linking static target lib/librte_net/libnet_crc_avx512_lib.a
[150/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memalloc.c.o
[151/2399] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_class_eth.c.o
[152/2399] Generating ring.sym_chk with a meson_exe.py custom command
[153/2399] Generating rte_gro_def with a custom command
[154/2399] Generating rte_gro_mingw with a custom command
[155/2399] Compiling C object lib/librte_bitratestats.a.p/librte_bitratestats_rte_bitrate.c.o
[156/2399] Compiling C object lib/librte_net.a.p/librte_net_rte_arp.c.o
[157/2399] Linking static target lib/librte_bitratestats.a
[158/2399] Compiling C object lib/librte_net.a.p/librte_net_rte_ether.c.o
[159/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_rte_malloc.c.o
[160/2399] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_ring.c.o
[161/2399] Generating rte_gso_def with a custom command
[162/2399] Generating rte_gso_mingw with a custom command
[163/2399] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf_dyn.c.o
[164/2399] Compiling C object lib/librte_cmdline.a.p/librte_cmdline_cmdline_parse_etheraddr.c.o
[165/2399] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_mtr.c.o
[166/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_memory.c.o
[167/2399] Linking static target lib/librte_cmdline.a
[168/2399] Generating meter.sym_chk with a meson_exe.py custom command
[169/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_malloc_heap.c.o
[170/2399] Generating rte_ip_frag_def with a custom command
[171/2399] Compiling C object lib/librte_cfgfile.a.p/librte_cfgfile_rte_cfgfile.c.o
[172/2399] Generating rte_ip_frag_mingw with a custom command
[173/2399] Generating rte_jobstats_def with a custom command
[174/2399] Linking static target lib/librte_cfgfile.a
[175/2399] Generating rte_jobstats_mingw with a custom command
[176/2399] Compiling C object lib/librte_net.a.p/librte_net_rte_net.c.o
[177/2399] Linking static target lib/librte_net.a
[178/2399] Generating rte_kni_def with a custom command
[179/2399] Generating rte_kni_mingw with a custom command
[180/2399] Generating rte_latencystats_def with a custom command
[181/2399] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_single.c.o
[182/2399] Compiling C object lib/librte_acl.a.p/librte_acl_tb_mem.c.o
[183/2399] Generating rte_latencystats_mingw with a custom command
[184/2399] Generating pci.sym_chk with a meson_exe.py custom command
[185/2399] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev_pmd.c.o
[186/2399] Generating rte_lpm_def with a custom command
[187/2399] Generating rte_lpm_mingw with a custom command
[188/2399] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_tm.c.o
[189/2399] Compiling C object lib/librte_timer.a.p/librte_timer_rte_timer.c.o
[190/2399] Linking static target lib/librte_timer.a
[191/2399] Generating rte_member_def with a custom command
[192/2399] Compiling C object lib/librte_acl.a.p/librte_acl_rte_acl.c.o
[193/2399] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_eventdev_trace_points.c.o
[194/2399] Generating rte_member_mingw with a custom command
[195/2399] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_cryptodev_trace_points.c.o
[196/2399] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_comp.c.o
[197/2399] Compiling C object lib/librte_table.a.p/librte_table_rte_table_stub.c.o
[198/2399] Compiling C object lib/librte_eal.a.p/librte_eal_linux_eal_vfio.c.o
[199/2399] Compiling C object lib/librte_cryptodev.so.21.0.p/librte_cryptodev_cryptodev_trace_points.c.o
[200/2399] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_load.c.o
[201/2399] Generating rte_power_def with a custom command
[202/2399] Generating rte_power_mingw with a custom command
[203/2399] Compiling C object lib/librte_acl.a.p/librte_acl_acl_gen.c.o
[204/2399] Generating rte_pdump_def with a custom command
[205/2399] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor_match_sse.c.o
[206/2399] Generating metrics.sym_chk with a meson_exe.py custom command
[207/2399] Generating symbol file lib/librte_kvargs.so.21.0.p/librte_kvargs.so.21.0.symbols
[208/2399] Compiling C object lib/librte_power.a.p/librte_power_power_common.c.o
[209/2399] Compiling C object lib/librte_cryptodev.so.21.0.p/librte_cryptodev_rte_cryptodev_pmd.c.o
[210/2399] Compiling C object lib/librte_member.a.p/librte_member_rte_member.c.o
[211/2399] Compiling C object lib/librte_power.a.p/librte_power_rte_power.c.o
[212/2399] Generating rte_pdump_mingw with a custom command
[213/2399] Generating rte_rawdev_def with a custom command
[214/2399] Generating rte_rawdev_mingw with a custom command
[215/2399] Generating rte_regexdev_def with a custom command
[216/2399] Compiling C object lib/librte_power.a.p/librte_power_guest_channel.c.o
[217/2399] Generating rte_regexdev_mingw with a custom command
[218/2399] Compiling C object lib/librte_power.a.p/librte_power_power_kvm_vm.c.o
[219/2399] Compiling C object lib/librte_mempool.a.p/librte_mempool_rte_mempool.c.o
[220/2399] Generating rte_rib_def with a custom command
[221/2399] Generating rte_rib_mingw with a custom command
[222/2399] Linking static target lib/librte_mempool.a
[223/2399] Generating rte_reorder_def with a custom command
[224/2399] Generating rte_reorder_mingw with a custom command
[225/2399] Generating bitratestats.sym_chk with a meson_exe.py custom command
[226/2399] Generating telemetry.sym_chk with a meson_exe.py custom command
[227/2399] Compiling C object lib/librte_rcu.a.p/librte_rcu_rte_rcu_qsbr.c.o
[228/2399] Generating rte_sched_mingw with a custom command
[229/2399] Linking static target lib/librte_rcu.a
[230/2399] Generating rte_sched_def with a custom command
[231/2399] Compiling C object lib/librte_gso.a.p/librte_gso_gso_udp4.c.o
[232/2399] Generating rte_security_mingw with a custom command
[233/2399] Generating rte_security_def with a custom command
[234/2399] Generating rte_stack_def with a custom command
[235/2399] Generating rte_stack_mingw with a custom command
[236/2399] Compiling C object lib/librte_gso.a.p/librte_gso_rte_gso.c.o
[237/2399] Linking target lib/librte_telemetry.so.21.0
[238/2399] Compiling C object lib/librte_compressdev.a.p/librte_compressdev_rte_compressdev.c.o
[239/2399] Compiling C object lib/librte_bbdev.a.p/librte_bbdev_rte_bbdev.c.o
[240/2399] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_reassembly.c.o
[241/2399] Linking static target lib/librte_compressdev.a
[242/2399] Linking static target lib/librte_bbdev.a
[243/2399] Compiling C object lib/librte_sched.a.p/librte_sched_rte_approx.c.o
[244/2399] Compiling C object lib/librte_sched.a.p/librte_sched_rte_red.c.o
[245/2399] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_std.c.o
[246/2399] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tcp4.c.o
[247/2399] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack_lf.c.o
[248/2399] Compiling C object lib/librte_power.a.p/librte_power_rte_power_empty_poll.c.o
[249/2399] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_scalar.c.o
[250/2399] Compiling C object lib/librte_gro.a.p/librte_gro_rte_gro.c.o
[251/2399] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_udp4.c.o
[252/2399] Compiling C object lib/librte_gso.a.p/librte_gso_gso_tunnel_tcp4.c.o
[253/2399] Generating rte_vhost_def with a custom command
[254/2399] Compiling C object lib/librte_stack.a.p/librte_stack_rte_stack.c.o
[255/2399] Generating cmdline.sym_chk with a meson_exe.py custom command
[256/2399] Generating rte_vhost_mingw with a custom command
[257/2399] Linking static target lib/librte_stack.a
[258/2399] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_reassembly.c.o
[259/2399] Compiling C object lib/librte_jobstats.a.p/librte_jobstats_rte_jobstats.c.o
[260/2399] Compiling C object lib/librte_gro.a.p/librte_gro_gro_vxlan_tcp4.c.o
[261/2399] Linking static target lib/librte_jobstats.a
[262/2399] Generating net.sym_chk with a meson_exe.py custom command
[263/2399] Generating timer.sym_chk with a meson_exe.py custom command
[264/2399] Generating rte_ipsec_def with a custom command
[265/2399] Generating cfgfile.sym_chk with a meson_exe.py custom command
[266/2399] Compiling C object lib/librte_table.a.p/librte_table_rte_swx_table_em.c.o
[267/2399] Generating rte_ipsec_mingw with a custom command
[268/2399] Generating rte_fib_def with a custom command
[269/2399] Generating rte_fib_mingw with a custom command
[270/2399] Compiling C object lib/librte_gro.a.p/librte_gro_gro_udp4.c.o
[271/2399] Compiling C object lib/librte_vhost.a.p/librte_vhost_fd_man.c.o
[272/2399] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ip_frag_common.c.o
[273/2399] Compiling C object lib/librte_member.a.p/librte_member_rte_member_vbf.c.o
[274/2399] Compiling C object lib/librte_gso.a.p/librte_gso_gso_common.c.o
[275/2399] Compiling C object lib/librte_eal.a.p/librte_eal_common_eal_common_options.c.o
[276/2399] Compiling C object lib/librte_gro.a.p/librte_gro_gro_tcp4.c.o
[277/2399] Linking static target lib/librte_gso.a
[278/2399] Linking static target lib/librte_gro.a
[279/2399] Linking static target lib/librte_eal.a
[280/2399] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_flow.c.o
[281/2399] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv6_fragmentation.c.o
[282/2399] Compiling C object lib/librte_distributor.a.p/librte_distributor_rte_distributor.c.o
[283/2399] Linking static target lib/librte_distributor.a
[284/2399] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib.c.o
[285/2399] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_ip_frag_internal.c.o
[286/2399] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm.c.o
[287/2399] Compiling C object lib/librte_latencystats.a.p/librte_latencystats_rte_latencystats.c.o
[288/2399] Compiling C object lib/librte_cryptodev.a.p/librte_cryptodev_rte_cryptodev.c.o
[289/2399] Compiling C object lib/librte_ip_frag.a.p/librte_ip_frag_rte_ipv4_fragmentation.c.o
[290/2399] Linking static target lib/librte_latencystats.a
[291/2399] Linking static target lib/librte_cryptodev.a
[292/2399] Linking static target lib/librte_ip_frag.a
[293/2399] Generating rte_port_def with a custom command
[294/2399] Generating rte_port_mingw with a custom command
[295/2399] Compiling C object lib/librte_power.a.p/librte_power_power_acpi_cpufreq.c.o
[296/2399] Generating mempool.sym_chk with a meson_exe.py custom command
[297/2399] Compiling C object lib/librte_security.a.p/librte_security_rte_security.c.o
[298/2399] Linking static target lib/librte_security.a
[299/2399] Generating rcu.sym_chk with a meson_exe.py custom command
[300/2399] Generating symbol file lib/librte_telemetry.so.21.0.p/librte_telemetry.so.21.0.symbols
[301/2399] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_timer_adapter.c.o
[302/2399] Generating jobstats.sym_chk with a meson_exe.py custom command
[303/2399] Compiling C object lib/librte_power.a.p/librte_power_power_pstate_cpufreq.c.o
[304/2399] Linking static target lib/librte_power.a
[305/2399] Compiling C object lib/librte_acl.a.p/librte_acl_acl_bld.c.o
[306/2399] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ses.c.o
[307/2399] Compiling C object lib/librte_mbuf.a.p/librte_mbuf_rte_mbuf.c.o
[308/2399] Linking static target lib/librte_mbuf.a
[309/2399] Compiling C object lib/librte_vhost.a.p/librte_vhost_vdpa.c.o
[310/2399] Generating stack.sym_chk with a meson_exe.py custom command
[311/2399] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_tx_adapter.c.o
[312/2399] Compiling C object lib/librte_regexdev.a.p/librte_regexdev_rte_regexdev.c.o
[313/2399] Linking static target lib/librte_regexdev.a
[314/2399] Compiling C object lib/librte_reorder.a.p/librte_reorder_rte_reorder.c.o
[315/2399] Compiling C object lib/librte_rawdev.a.p/librte_rawdev_rte_rawdev.c.o
[316/2399] Linking static target lib/librte_reorder.a
[317/2399] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib.c.o
[318/2399] Linking static target lib/librte_rawdev.a
[319/2399] Generating gro.sym_chk with a meson_exe.py custom command
[320/2399] Compiling C object lib/librte_kni.a.p/librte_kni_rte_kni.c.o
[321/2399] Linking static target lib/librte_kni.a
[322/2399] Compiling C object lib/librte_fib.a.p/librte_fib_rte_fib6.c.o
[323/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_device_p4.c.o
[324/2399] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sched.c.o
[325/2399] Compiling C object lib/librte_vhost.a.p/librte_vhost_iotlb.c.o
[326/2399] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_eventdev.c.o
[327/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_util.c.o
[328/2399] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_sa.c.o
[329/2399] Generating gso.sym_chk with a meson_exe.py custom command
[330/2399] Generating ip_frag.sym_chk with a meson_exe.py custom command
[331/2399] Generating distributor.sym_chk with a meson_exe.py custom command
[332/2399] Compiling C object lib/librte_lpm.a.p/librte_lpm_rte_lpm6.c.o
[333/2399] Linking static target lib/librte_lpm.a
[334/2399] Generating rte_pipeline_def with a custom command
[335/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_identifier.c.o
[336/2399] Generating rte_pipeline_mingw with a custom command
[337/2399] Compiling C object lib/librte_efd.a.p/librte_efd_rte_efd.c.o
[338/2399] Compiling C object lib/librte_pdump.a.p/librte_pdump_rte_pdump.c.o
[339/2399] Generating latencystats.sym_chk with a meson_exe.py custom command
[340/2399] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_crypto_adapter.c.o
[341/2399] Linking static target lib/librte_efd.a
[342/2399] Linking static target lib/librte_pdump.a
[343/2399] Generating bbdev.sym_chk with a meson_exe.py custom command
[344/2399] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm_ipv6.c.o
[345/2399] Compiling C object lib/librte_vhost.a.p/librte_vhost_socket.c.o
[346/2399] Generating security.sym_chk with a meson_exe.py custom command
[347/2399] Generating rte_flow_classify_def with a custom command
[348/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_tcam.c.o
[349/2399] Generating compressdev.sym_chk with a meson_exe.py custom command
[350/2399] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_cuckoo.c.o
[351/2399] Compiling C object lib/librte_rib.a.p/librte_rib_rte_rib6.c.o
[352/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tbl.c.o
[353/2399] Linking static target lib/librte_rib.a
[354/2399] Compiling C object lib/librte_cryptodev.so.21.0.p/librte_cryptodev_rte_cryptodev.c.o
[355/2399] Generating rte_bpf_def with a custom command
[356/2399] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_ethdev.c.o
[357/2399] Generating rte_bpf_mingw with a custom command
[358/2399] Generating power.sym_chk with a meson_exe.py custom command
[359/2399] Compiling C object lib/librte_port.a.p/librte_port_rte_port_frag.c.o
[360/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_shadow_tcam.c.o
[361/2399] Compiling C object lib/librte_table.a.p/librte_table_rte_table_lpm.c.o
[362/2399] Compiling C object lib/librte_member.a.p/librte_member_rte_member_ht.c.o
[363/2399] Generating cryptodev.sym_chk with a meson_exe.py custom command
[364/2399] Compiling C object lib/librte_port.a.p/librte_port_rte_port_fd.c.o
[365/2399] Linking static target lib/librte_member.a
[366/2399] Generating rte_graph_def with a custom command
[367/2399] Compiling C object lib/librte_port.a.p/librte_port_rte_port_kni.c.o
[368/2399] Generating rte_graph_mingw with a custom command
[369/2399] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ras.c.o
[370/2399] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_sse.c.o
[371/2399] Generating rawdev.sym_chk with a meson_exe.py custom command
[372/2399] Compiling C object lib/librte_node.a.p/librte_node_null.c.o
[373/2399] Compiling C object lib/librte_table.a.p/librte_table_rte_table_array.c.o
[374/2399] Compiling C object lib/librte_port.a.p/librte_port_rte_port_sym_crypto.c.o
[375/2399] Compiling C object lib/librte_port.a.p/librte_port_rte_port_source_sink.c.o
[376/2399] Compiling C object lib/librte_fib.a.p/librte_fib_trie.c.o
[377/2399] Compiling C object lib/librte_fib.a.p/librte_fib_dir24_8.c.o
[378/2399] Generating reorder.sym_chk with a meson_exe.py custom command
[379/2399] Linking static target lib/librte_fib.a
[380/2399] Generating rte_node_mingw with a custom command
[381/2399] Generating rte_node_def with a custom command
[382/2399] Generating rte_common_cpt_mingw with a custom command
[383/2399] Compiling C object lib/librte_table.a.p/librte_table_rte_table_acl.c.o
[384/2399] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_ipsec_sad.c.o
[385/2399] Generating kni.sym_chk with a meson_exe.py custom command
[386/2399] Generating rte_common_cpt_def with a custom command
[387/2399] Generating mbuf.sym_chk with a meson_exe.py custom command
[388/2399] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ethdev.c.o
[389/2399] Generating rte_common_dpaax_mingw with a custom command
[390/2399] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost.c.o
[391/2399] Generating rte_common_dpaax_def with a custom command
[392/2399] Compiling C object lib/librte_port.a.p/librte_port_rte_port_eventdev.c.o
[393/2399] Generating rte_common_iavf_def with a custom command
[394/2399] Generating efd.sym_chk with a meson_exe.py custom command
[395/2399] Generating rte_common_iavf_mingw with a custom command
[396/2399] Generating rte_common_octeontx_def with a custom command
[397/2399] Generating lpm.sym_chk with a meson_exe.py custom command
[398/2399] Compiling C object lib/librte_port.a.p/librte_port_rte_swx_port_source_sink.c.o
[399/2399] Generating rte_common_octeontx_mingw with a custom command
[400/2399] Generating rte_common_octeontx2_mingw with a custom command
[401/2399] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf.c.o
[402/2399] Generating rte_common_octeontx2_def with a custom command
[403/2399] Generating regexdev.sym_chk with a meson_exe.py custom command
[404/2399] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_port_in_action.c.o
[405/2399] Generating pdump.sym_chk with a meson_exe.py custom command
[406/2399] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_caamflib.c.o
[407/2399] Compiling C object lib/librte_graph.a.p/librte_graph_graph_debug.c.o
[408/2399] Compiling C object drivers/libtmp_rte_common_octeontx.a.p/common_octeontx_octeontx_mbox.c.o
[409/2399] Linking static target drivers/libtmp_rte_common_octeontx.a
[410/2399] Generating rte_common_octeontx.pmd.c with a custom command
[411/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_ulp_mark_mgr.c.o
[412/2399] Compiling C object lib/librte_graph.a.p/librte_graph_graph_ops.c.o
[413/2399] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaax_iova_table.c.o
[414/2399] Compiling C object drivers/librte_common_octeontx.a.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[415/2399] Linking static target drivers/librte_common_octeontx.a
[416/2399] Generating member.sym_chk with a meson_exe.py custom command
[417/2399] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_irq.c.o
[418/2399] Compiling C object drivers/librte_common_octeontx.so.21.0.p/meson-generated_.._rte_common_octeontx.pmd.c.o
[419/2399] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_ctl.c.o
[420/2399] Compiling C object lib/librte_graph.a.p/librte_graph_node.c.o
[421/2399] Compiling C object lib/librte_graph.a.p/librte_graph_graph_populate.c.o
[422/2399] Compiling C object drivers/libtmp_rte_common_dpaax.a.p/common_dpaax_dpaa_of.c.o
[423/2399] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_load_elf.c.o
[424/2399] Linking static target drivers/libtmp_rte_common_dpaax.a
[425/2399] Compiling C object lib/librte_node.a.p/librte_node_log.c.o
[426/2399] Compiling C object lib/librte_graph.a.p/librte_graph_graph_stats.c.o
[427/2399] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline_spec.c.o
[428/2399] Generating rte_common_dpaax.pmd.c with a custom command
[429/2399] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key8.c.o
[430/2399] Compiling C object drivers/librte_common_dpaax.a.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[431/2399] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_pmd_ops_helper.c.o
[432/2399] Compiling C object lib/librte_node.a.p/librte_node_pkt_drop.c.o
[433/2399] Linking static target drivers/librte_common_dpaax.a
[434/2399] Compiling C object drivers/librte_common_dpaax.so.21.0.p/meson-generated_.._rte_common_dpaax.pmd.c.o
[435/2399] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify_parse.c.o
[436/2399] Compiling C object lib/librte_flow_classify.a.p/librte_flow_classify_rte_flow_classify.c.o
[437/2399] Linking static target lib/librte_flow_classify.a
[438/2399] Compiling C object lib/librte_graph.a.p/librte_graph_graph.c.o
[439/2399] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_impl.c.o
[440/2399] Linking static target lib/librte_graph.a
[441/2399] Compiling C object lib/librte_node.a.p/librte_node_ethdev_tx.c.o
[442/2399] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key16.c.o
[443/2399] Compiling C object lib/librte_sched.a.p/librte_sched_rte_sched.c.o
[444/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_ulp_flow_db.c.o
[445/2399] Linking static target lib/librte_sched.a
[446/2399] Compiling C object lib/librte_node.a.p/librte_node_ethdev_ctrl.c.o
[447/2399] Compiling C object drivers/libtmp_rte_common_cpt.a.p/common_cpt_cpt_fpm_tables.c.o
[448/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp.c.o
[449/2399] Linking static target drivers/libtmp_rte_common_cpt.a
[450/2399] Generating rte_common_cpt.pmd.c with a custom command
[451/2399] Generating rib.sym_chk with a meson_exe.py custom command
[452/2399] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_ext.c.o
[453/2399] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_pipeline.c.o
[454/2399] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_key32.c.o
[455/2399] Compiling C object drivers/librte_common_cpt.a.p/meson-generated_.._rte_common_cpt.pmd.c.o
[456/2399] Compiling C object drivers/librte_common_cpt.so.21.0.p/meson-generated_.._rte_common_cpt.pmd.c.o
[457/2399] Linking static target drivers/librte_common_cpt.a
[458/2399] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_exec.c.o
[459/2399] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_user.c.o
[460/2399] Compiling C object lib/librte_node.a.p/librte_node_ethdev_rx.c.o
[461/2399] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_outb.c.o
[462/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_hash.c.o
[463/2399] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_pkt.c.o
[464/2399] Compiling C object lib/librte_table.a.p/librte_table_rte_table_hash_lru.c.o
[465/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_lic.c.o
[466/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_bootcfg.c.o
[467/2399] Linking static target lib/librte_table.a
[468/2399] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_common.c.o
[469/2399] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_common.c.o
[470/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_filter.c.o
[471/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_crc32.c.o
[472/2399] Generating fib.sym_chk with a meson_exe.py custom command
[473/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_intr.c.o
[474/2399] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_sec_idev.c.o
[475/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nvram.c.o
[476/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_pci.c.o
[477/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_evb.c.o
[478/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_ev.c.o
[479/2399] Compiling C object lib/librte_ethdev.a.p/librte_ethdev_rte_ethdev.c.o
[480/2399] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_validate.c.o
[481/2399] Linking static target lib/librte_ethdev.a
[482/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mon.c.o
[483/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_vpd.c.o
[484/2399] Generating rte_common_octeontx.sym_chk with a meson_exe.py custom command
[485/2399] Generating rte_common_sfc_efx_def with a custom command
[486/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_proxy.c.o
[487/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_port.c.o
[488/2399] Compiling C object lib/librte_node.a.p/librte_node_ip4_lookup.c.o
[489/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nvram.c.o
[490/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_sram.c.o
[491/2399] Compiling C object drivers/libtmp_rte_common_iavf.a.p/common_iavf_iavf_adminq.c.o
[492/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_nic.c.o
[493/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mcdi.c.o
[494/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_nic.c.o
[495/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_phy.c.o
[496/2399] Linking static target drivers/libtmp_rte_common_iavf.a
[497/2399] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx.c.o
[498/2399] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_mbox.c.o
[499/2399] Compiling C object lib/librte_ipsec.a.p/librte_ipsec_esp_inb.c.o
[500/2399] Generating rte_common_sfc_efx_mingw with a custom command
[501/2399] Generating rte_common_iavf.pmd.c with a custom command
[502/2399] Linking static target lib/librte_ipsec.a
[503/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_mac.c.o
[504/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/mcdi_mon.c.o
[505/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tx.c.o
[506/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_phy.c.o
[507/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mac.c.o
[508/2399] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_avx512.c.o
[509/2399] Compiling C object drivers/librte_common_iavf.a.p/meson-generated_.._rte_common_iavf.pmd.c.o
[510/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_vpd.c.o
[511/2399] Linking static target drivers/librte_common_iavf.a
[512/2399] Compiling C object drivers/librte_common_iavf.so.21.0.p/meson-generated_.._rte_common_iavf.pmd.c.o
[513/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_rx.c.o
[514/2399] Generating rte_bus_dpaa_def with a custom command
[515/2399] Generating rte_bus_dpaa_mingw with a custom command
[516/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_image.c.o
[517/2399] Compiling C object lib/librte_node.a.p/librte_node_pkt_cls.c.o
[518/2399] Compiling C object drivers/libtmp_rte_common_octeontx2.a.p/common_octeontx2_otx2_dev.c.o
[519/2399] Compiling C object lib/librte_bpf.a.p/librte_bpf_bpf_jit_x86.c.o
[520/2399] Linking static target drivers/libtmp_rte_common_octeontx2.a
[521/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/siena_sram.c.o
[522/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_tunnel.c.o
[523/2399] Linking static target lib/librte_bpf.a
[524/2399] Generating flow_classify.sym_chk with a meson_exe.py custom command
[525/2399] Generating rte_common_octeontx2.pmd.c with a custom command
[526/2399] Generating sched.sym_chk with a meson_exe.py custom command
[527/2399] Compiling C object drivers/librte_common_octeontx2.a.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[528/2399] Compiling C object drivers/librte_common_octeontx2.so.21.0.p/meson-generated_.._rte_common_octeontx2.pmd.c.o
[529/2399] Linking static target drivers/librte_common_octeontx2.a
[530/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford_nic.c.o
[531/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpmng.c.o
[532/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpdmai.c.o
[533/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpbp.c.o
[534/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/hunt_nic.c.o
[535/2399] Generating rte_bus_fslmc_mingw with a custom command
[536/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_rx.c.o
[537/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_mc_sys.c.o
[538/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_pci.c.o
[539/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpcon.c.o
[540/2399] Generating rte_bus_ifpga_def with a custom command
[541/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_ev.c.o
[542/2399] Compiling C object lib/librte_port.a.p/librte_port_rte_port_ring.c.o
[543/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_phy.c.o
[544/2399] Generating rte_bus_fslmc_def with a custom command
[545/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_intr.c.o
[546/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_nic.c.o
[547/2399] Generating rte_bus_ifpga_mingw with a custom command
[548/2399] Linking static target lib/librte_port.a
[549/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_proxy.c.o
[550/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nvram.c.o
[551/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_debug.c.o
[552/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tunnel.c.o
[553/2399] Generating rte_bus_pci_def with a custom command
[554/2399] Generating rte_bus_pci_mingw with a custom command
[555/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpci.c.o
[556/2399] Generating rte_common_cpt.sym_chk with a meson_exe.py custom command
[557/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_tx.c.o
[558/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_vpd.c.o
[559/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_rx.c.o
[560/2399] Generating table.sym_chk with a meson_exe.py custom command
[561/2399] Generating rte_bus_vdev_def with a custom command
[562/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_mc_dpio.c.o
[563/2399] Generating rte_bus_vdev_mingw with a custom command
[564/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mcdi.c.o
[565/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_evb.c.o
[566/2399] Generating rte_common_dpaax.sym_chk with a meson_exe.py custom command
[567/2399] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_params.c.o
[568/2399] Generating rte_mempool_bucket_def with a custom command
[569/2399] Generating rte_mempool_bucket_mingw with a custom command
[570/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_ev.c.o
[571/2399] Generating rte_bus_vmbus_def with a custom command
[572/2399] Generating rte_bus_vmbus_mingw with a custom command
[573/2399] Generating rte_mempool_dpaa2_def with a custom command
[574/2399] Generating graph.sym_chk with a meson_exe.py custom command
[575/2399] Generating rte_mempool_dpaa_def with a custom command
[576/2399] Generating rte_mempool_dpaa_mingw with a custom command
[577/2399] Compiling C object lib/librte_eventdev.a.p/librte_eventdev_rte_event_eth_rx_adapter.c.o
[578/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/medford2_nic.c.o
[579/2399] Generating rte_mempool_dpaa2_mingw with a custom command
[580/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_intr.c.o
[581/2399] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_common.c.o
[582/2399] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev_params.c.o
[583/2399] Generating rte_mempool_octeontx_mingw with a custom command
[584/2399] Linking static target lib/librte_eventdev.a
[585/2399] Generating rte_mempool_octeontx_def with a custom command
[586/2399] Generating rte_mempool_octeontx2_def with a custom command
[587/2399] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman.c.o
[588/2399] Generating rte_mempool_octeontx2_mingw with a custom command
[589/2399] Generating rte_mempool_ring_def with a custom command
[590/2399] Generating rte_mempool_stack_def with a custom command
[591/2399] Generating rte_mempool_ring_mingw with a custom command
[592/2399] Generating rte_mempool_stack_mingw with a custom command
[593/2399] Generating rte_pmd_af_packet_def with a custom command
[594/2399] Generating rte_pmd_af_packet_mingw with a custom command
[595/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/rhead_tx.c.o
[596/2399] Compiling C object lib/librte_node.a.p/librte_node_ip4_rewrite.c.o
[597/2399] Linking static target lib/librte_node.a
[598/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_mac.c.o
[599/2399] Generating eal.sym_chk with a meson_exe.py custom command
[600/2399] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_netcfg_layer.c.o
[601/2399] Compiling C object drivers/libtmp_rte_common_sfc_efx.a.p/common_sfc_efx_sfc_efx_mcdi.c.o
[602/2399] Compiling C object drivers/libtmp_rte_bus_ifpga.a.p/bus_ifpga_ifpga_bus.c.o
[603/2399] Linking static target drivers/libtmp_rte_common_sfc_efx.a
[604/2399] Linking static target drivers/libtmp_rte_bus_ifpga.a
[605/2399] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common_uio.c.o
[606/2399] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_sys.c.o
[607/2399] Generating rte_common_sfc_efx.pmd.c with a custom command
[608/2399] Generating rte_bus_ifpga.pmd.c with a custom command
[609/2399] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_bufring.c.o
[610/2399] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common_uio.c.o
[611/2399] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_common.c.o
[612/2399] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_vmbus_channel.c.o
[613/2399] Compiling C object drivers/librte_common_sfc_efx.a.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[614/2399] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_uio.c.o
[615/2399] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_bus.c.o
[616/2399] Compiling C object drivers/librte_common_sfc_efx.so.21.0.p/meson-generated_.._rte_common_sfc_efx.pmd.c.o
[617/2399] Generating rte_common_iavf.sym_chk with a meson_exe.py custom command
[618/2399] Generating rte_pmd_ark_def with a custom command
[619/2399] Compiling C object drivers/librte_bus_ifpga.so.21.0.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[620/2399] Compiling C object drivers/librte_bus_ifpga.a.p/meson-generated_.._rte_bus_ifpga.pmd.c.o
[621/2399] Linking static target drivers/librte_bus_ifpga.a
[622/2399] Compiling C object drivers/libtmp_rte_pmd_ark.a.p/net_ark_ark_ddm.c.o
[623/2399] Generating rte_pmd_ark_mingw with a custom command
[624/2399] Generating rte_pmd_atlantic_mingw with a custom command
[625/2399] Linking target lib/librte_eal.so.21.0
[626/2399] Compiling C object drivers/libtmp_rte_bus_vmbus.a.p/bus_vmbus_linux_vmbus_uio.c.o
[627/2399] Compiling C object drivers/libtmp_rte_bus_vdev.a.p/bus_vdev_vdev.c.o
[628/2399] Linking static target drivers/libtmp_rte_bus_vmbus.a
[629/2399] Linking static target drivers/libtmp_rte_bus_vdev.a
[630/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/efx_mcdi.c.o
[631/2399] Generating rte_bus_vdev.pmd.c with a custom command
[632/2399] Generating rte_pmd_atlantic_def with a custom command
[633/2399] Compiling C object drivers/libtmp_rte_pmd_ark.a.p/net_ark_ark_mpu.c.o
[634/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpbp.c.o
[635/2399] Generating rte_bus_vmbus.pmd.c with a custom command
[636/2399] Generating rte_pmd_avp_def with a custom command
[637/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_filter.c.o
[638/2399] Compiling C object drivers/librte_bus_vdev.a.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[639/2399] Compiling C object drivers/libtmp_rte_pmd_ark.a.p/net_ark_ark_rqp.c.o
[640/2399] Generating rte_pmd_avp_mingw with a custom command
[641/2399] Linking static target drivers/librte_bus_vdev.a
[642/2399] Compiling C object drivers/librte_bus_vdev.so.21.0.p/meson-generated_.._rte_bus_vdev.pmd.c.o
[643/2399] Compiling C object drivers/librte_bus_vmbus.a.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[644/2399] Compiling C object drivers/librte_bus_vmbus.so.21.0.p/meson-generated_.._rte_bus_vmbus.pmd.c.o
[645/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpci.c.o
[646/2399] Linking static target drivers/librte_bus_vmbus.a
[647/2399] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_dpaa_alloc.c.o
[648/2399] Generating bpf.sym_chk with a meson_exe.py custom command
[649/2399] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_pci_common.c.o
[650/2399] Compiling C object drivers/libtmp_rte_pmd_atlantic.a.p/net_atlantic_atl_hw_regs.c.o
[651/2399] Generating rte_pmd_axgbe_def with a custom command
[652/2399] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman_hw.c.o
[653/2399] Generating rte_pmd_axgbe_mingw with a custom command
[654/2399] Compiling C object drivers/libtmp_rte_pmd_ark.a.p/net_ark_ark_udm.c.o
[655/2399] Generating port.sym_chk with a meson_exe.py custom command
[656/2399] Generating ipsec.sym_chk with a meson_exe.py custom command
[657/2399] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_bman_driver.c.o
[658/2399] Generating rte_pmd_bond_mingw with a custom command
[659/2399] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_dpaa_bus.c.o
[660/2399] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman_driver.c.o
[661/2399] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci_vfio.c.o
[662/2399] Generating rte_pmd_bond_def with a custom command
[663/2399] Compiling C object drivers/common/sfc_efx/base/libsfc_base.a.p/ef10_nic.c.o
[664/2399] Compiling C object drivers/libtmp_rte_pmd_atlantic.a.p/net_atlantic_hw_atl_hw_atl_b0.c.o
[665/2399] Linking static target drivers/common/sfc_efx/base/libsfc_base.a
[666/2399] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_process.c.o
[667/2399] Linking static target drivers/librte_common_sfc_efx.a
[668/2399] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_fman_fman.c.o
[669/2399] Generating rte_pmd_bnx2x_mingw with a custom command
[670/2399] Generating rte_pmd_bnx2x_def with a custom command
[671/2399] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_rte_mempool_octeontx.c.o
[672/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_vfio.c.o
[673/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_portal_dpaa2_hw_dpio.c.o
[674/2399] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_irq.c.o
[675/2399] Compiling C object drivers/libtmp_rte_bus_pci.a.p/bus_pci_linux_pci.c.o
[676/2399] Compiling C object drivers/libtmp_rte_mempool_stack.a.p/mempool_stack_rte_mempool_stack.c.o
[677/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_fslmc_bus.c.o
[678/2399] Linking static target drivers/libtmp_rte_mempool_stack.a
[679/2399] Linking static target drivers/libtmp_rte_bus_pci.a
[680/2399] Generating rte_mempool_stack.pmd.c with a custom command
[681/2399] Generating rte_bus_pci.pmd.c with a custom command
[682/2399] Compiling C object drivers/librte_mempool_stack.a.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[683/2399] Compiling C object drivers/librte_bus_pci.a.p/meson-generated_.._rte_bus_pci.pmd.c.o
[684/2399] Linking static target drivers/librte_bus_pci.a
[685/2399] Compiling C object drivers/librte_bus_pci.so.21.0.p/meson-generated_.._rte_bus_pci.pmd.c.o
[686/2399] Compiling C object drivers/libtmp_rte_mempool_octeontx.a.p/mempool_octeontx_octeontx_fpavf.c.o
[687/2399] Generating rte_bus_ifpga.sym_chk with a meson_exe.py custom command
[688/2399] Linking static target drivers/librte_mempool_stack.a
[689/2399] Linking static target drivers/libtmp_rte_mempool_octeontx.a
[690/2399] Compiling C object drivers/libtmp_rte_pmd_atlantic.a.p/net_atlantic_hw_atl_hw_atl_llh.c.o
[691/2399] Generating rte_mempool_octeontx.pmd.c with a custom command
[692/2399] Compiling C object drivers/librte_mempool_stack.so.21.0.p/meson-generated_.._rte_mempool_stack.pmd.c.o
[693/2399] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_debug.c.o
[694/2399] Compiling C object drivers/librte_mempool_octeontx.a.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[695/2399] Linking static target drivers/librte_mempool_octeontx.a
[696/2399] Compiling C object drivers/librte_mempool_octeontx.so.21.0.p/meson-generated_.._rte_mempool_octeontx.pmd.c.o
[697/2399] Compiling C object drivers/libtmp_rte_pmd_ark.a.p/net_ark_ark_pktdir.c.o
[698/2399] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool_ops.c.o
[699/2399] Generating eventdev.sym_chk with a meson_exe.py custom command
[700/2399] Generating node.sym_chk with a meson_exe.py custom command
[701/2399] Generating rte_common_octeontx2.sym_chk with a meson_exe.py custom command
[702/2399] Compiling C object drivers/libtmp_rte_mempool_dpaa.a.p/mempool_dpaa_dpaa_mempool.c.o
[703/2399] Compiling C object drivers/libtmp_rte_mempool_octeontx2.a.p/mempool_octeontx2_otx2_mempool.c.o
[704/2399] Compiling C object drivers/libtmp_rte_pmd_virtio_crypto.a.p/crypto_virtio_virtqueue.c.o
[705/2399] Linking static target drivers/libtmp_rte_mempool_dpaa.a
[706/2399] Linking static target drivers/libtmp_rte_mempool_octeontx2.a
[707/2399] Generating rte_mempool_dpaa.pmd.c with a custom command
[708/2399] Compiling C object lib/librte_hash.a.p/librte_hash_rte_cuckoo_hash.c.o
[709/2399] Linking static target lib/librte_hash.a
[710/2399] Generating rte_mempool_octeontx2.pmd.c with a custom command
[711/2399] Compiling C object drivers/librte_mempool_dpaa.a.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[712/2399] Generating symbol file lib/librte_eal.so.21.0.p/librte_eal.so.21.0.symbols
[713/2399] Linking static target drivers/librte_mempool_dpaa.a
[714/2399] Compiling C object drivers/libtmp_rte_mempool_dpaa2.a.p/mempool_dpaa2_dpaa2_hw_mempool.c.o
[715/2399] Compiling C object drivers/librte_mempool_dpaa.so.21.0.p/meson-generated_.._rte_mempool_dpaa.pmd.c.o
[716/2399] Compiling C object drivers/libtmp_rte_pmd_atlantic.a.p/net_atlantic_rte_pmd_atlantic.c.o
[717/2399] Compiling C object drivers/libtmp_rte_pmd_ark.a.p/net_ark_ark_pktgen.c.o
[718/2399] Generating rte_bus_vdev.sym_chk with a meson_exe.py custom command
[719/2399] Compiling C object lib/librte_acl.a.p/librte_acl_acl_run_avx2.c.o
[720/2399] Linking target lib/librte_pci.so.21.0
[721/2399] Compiling C object drivers/libtmp_rte_pmd_axgbe.a.p/net_axgbe_axgbe_i2c.c.o
[722/2399] Linking static target lib/librte_acl.a
[723/2399] Compiling C object drivers/libtmp_rte_pmd_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils_fw2x.c.o
[724/2399] Linking target lib/librte_ring.so.21.0
[725/2399] Compiling C object drivers/libtmp_rte_pmd_ark.a.p/net_ark_ark_ethdev_tx.c.o
[726/2399] Linking target lib/librte_meter.so.21.0
[727/2399] Generating rte_bus_vmbus.sym_chk with a meson_exe.py custom command
[728/2399] Linking target lib/librte_cfgfile.so.21.0
[729/2399] Linking target lib/librte_timer.so.21.0
[730/2399] Linking target lib/librte_metrics.so.21.0
[731/2399] Compiling C object drivers/libtmp_rte_pmd_bond.a.p/net_bonding_rte_eth_bond_flow.c.o
[732/2399] Compiling C object drivers/libtmp_rte_pmd_atlantic.a.p/net_atlantic_hw_atl_hw_atl_utils.c.o
[733/2399] Linking target lib/librte_jobstats.so.21.0
[734/2399] Compiling C object drivers/libtmp_rte_pmd_bond.a.p/net_bonding_rte_eth_bond_args.c.o
[735/2399] Compiling C object drivers/libtmp_rte_pmd_ark.a.p/net_ark_ark_pktchkr.c.o
[736/2399] Linking static target drivers/libtmp_rte_mempool_dpaa2.a
[737/2399] Linking target drivers/librte_common_octeontx.so.21.0
[738/2399] Linking target drivers/librte_bus_vdev.so.21.0
[739/2399] Generating rte_mempool_dpaa2.pmd.c with a custom command
[740/2399] Linking target lib/librte_stack.so.21.0
[741/2399] Linking target lib/librte_rawdev.so.21.0
[742/2399] Linking target lib/librte_graph.so.21.0
[743/2399] Compiling C object drivers/librte_mempool_dpaa2.a.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[744/2399] Compiling C object drivers/libtmp_rte_pmd_bond.a.p/net_bonding_rte_eth_bond_alb.c.o
[745/2399] Linking target drivers/librte_common_dpaax.so.21.0
[746/2399] Linking target drivers/librte_common_iavf.so.21.0
[747/2399] Linking static target drivers/librte_mempool_dpaa2.a
[748/2399] Linking target drivers/librte_bus_vmbus.so.21.0
[749/2399] Compiling C object drivers/libtmp_rte_pmd_ark.a.p/net_ark_ark_ethdev.c.o
[750/2399] Compiling C object drivers/librte_mempool_dpaa2.so.21.0.p/meson-generated_.._rte_mempool_dpaa2.pmd.c.o
[751/2399] Compiling C object drivers/libtmp_rte_pmd_ark.a.p/net_ark_ark_ethdev_rx.c.o
[752/2399] Generating rte_mempool_stack.sym_chk with a meson_exe.py custom command
[753/2399] Linking static target drivers/libtmp_rte_pmd_ark.a
[754/2399] Compiling C object drivers/librte_mempool_octeontx2.so.21.0.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[755/2399] Compiling C object drivers/librte_mempool_octeontx2.a.p/meson-generated_.._rte_mempool_octeontx2.pmd.c.o
[756/2399] Linking static target drivers/librte_mempool_octeontx2.a
[757/2399] Generating rte_pmd_ark.pmd.c with a custom command
[758/2399] Compiling C object drivers/libtmp_rte_pmd_axgbe.a.p/net_axgbe_axgbe_rxtx_vec_sse.c.o
[759/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_irq.c.o
[760/2399] Compiling C object drivers/libtmp_rte_pmd_axgbe.a.p/net_axgbe_axgbe_mdio.c.o
[761/2399] Compiling C object drivers/librte_pmd_ark.a.p/meson-generated_.._rte_pmd_ark.pmd.c.o
[762/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_rand.c.o
[763/2399] Linking static target drivers/librte_pmd_ark.a
[764/2399] Compiling C object drivers/librte_pmd_ark.so.21.0.p/meson-generated_.._rte_pmd_ark.pmd.c.o
[765/2399] Compiling C object drivers/libtmp_rte_bus_fslmc.a.p/bus_fslmc_qbman_qbman_portal.c.o
[766/2399] Linking static target drivers/libtmp_rte_bus_fslmc.a
[767/2399] Compiling C object drivers/libtmp_rte_pmd_af_packet.a.p/net_af_packet_rte_eth_af_packet.c.o
[768/2399] Linking static target drivers/libtmp_rte_pmd_af_packet.a
[769/2399] Generating rte_pmd_af_packet.pmd.c with a custom command
[770/2399] Compiling C object drivers/libtmp_rte_pmd_bnx2x.a.p/net_bnx2x_bnx2x_vfpf.c.o
[771/2399] Generating rte_bus_fslmc.pmd.c with a custom command
[772/2399] Compiling C object drivers/librte_pmd_af_packet.a.p/meson-generated_.._rte_pmd_af_packet.pmd.c.o
[773/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_util.c.o
[774/2399] Compiling C object drivers/librte_bus_fslmc.so.21.0.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[775/2399] Generating rte_bus_pci.sym_chk with a meson_exe.py custom command
[776/2399] Compiling C object drivers/librte_pmd_af_packet.so.21.0.p/meson-generated_.._rte_pmd_af_packet.pmd.c.o
[777/2399] Compiling C object drivers/librte_bus_fslmc.a.p/meson-generated_.._rte_bus_fslmc.pmd.c.o
[778/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_stack.c.o
[779/2399] Linking static target drivers/librte_pmd_af_packet.a
[780/2399] Linking static target drivers/librte_bus_fslmc.a
[781/2399] Generating ethdev.sym_chk with a meson_exe.py custom command
[782/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_bitalloc.c.o
[783/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_cpr.c.o
[784/2399] Generating symbol file lib/librte_pci.so.21.0.p/librte_pci.so.21.0.symbols
[785/2399] Generating rte_mempool_octeontx.sym_chk with a meson_exe.py custom command
[786/2399] Generating symbol file lib/librte_ring.so.21.0.p/librte_ring.so.21.0.symbols
[787/2399] Compiling C object drivers/libtmp_rte_pmd_bnx2x.a.p/net_bnx2x_bnx2x_ethdev.c.o
[788/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_filter.c.o
[789/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_vnic.c.o
[790/2399] Compiling C object drivers/libtmp_rte_pmd_bond.a.p/net_bonding_rte_eth_bond_api.c.o
[791/2399] Generating hash.sym_chk with a meson_exe.py custom command
[792/2399] Linking target lib/librte_rcu.so.21.0
[793/2399] Linking target lib/librte_mempool.so.21.0
[794/2399] Compiling C object drivers/libtmp_rte_pmd_qat.a.p/common_qat_qat_logs.c.o
[795/2399] Linking target drivers/librte_bus_pci.so.21.0
[796/2399] Compiling C object drivers/libtmp_rte_mempool_ring.a.p/mempool_ring_rte_mempool_ring.c.o
[797/2399] Generating symbol file lib/librte_rawdev.so.21.0.p/librte_rawdev.so.21.0.symbols
[798/2399] Linking static target drivers/libtmp_rte_mempool_ring.a
[799/2399] Generating rte_mempool_ring.pmd.c with a custom command
[800/2399] Compiling C object drivers/libtmp_rte_pmd_axgbe.a.p/net_axgbe_axgbe_rxtx.c.o
[801/2399] Generating symbol file drivers/librte_common_octeontx.so.21.0.p/librte_common_octeontx.so.21.0.symbols
[802/2399] Linking target lib/librte_hash.so.21.0
[803/2399] Generating symbol file lib/librte_timer.so.21.0.p/librte_timer.so.21.0.symbols
[804/2399] Compiling C object drivers/librte_mempool_ring.a.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[805/2399] Compiling C object drivers/librte_mempool_ring.so.21.0.p/meson-generated_.._rte_mempool_ring.pmd.c.o
[806/2399] Linking static target drivers/librte_mempool_ring.a
[807/2399] Compiling C object drivers/libtmp_rte_pmd_atlantic.a.p/net_atlantic_atl_ethdev.c.o
[808/2399] Generating acl.sym_chk with a meson_exe.py custom command
[809/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_ll.c.o
[810/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_device.c.o
[811/2399] Generating symbol file drivers/librte_common_iavf.so.21.0.p/librte_common_iavf.so.21.0.symbols
[812/2399] Generating symbol file lib/librte_metrics.so.21.0.p/librte_metrics.so.21.0.symbols
[813/2399] Generating symbol file drivers/librte_bus_vdev.so.21.0.p/librte_bus_vdev.so.21.0.symbols
[814/2399] Generating rte_pmd_qat_mingw with a custom command
[815/2399] Linking target drivers/librte_bus_ifpga.so.21.0
[816/2399] Compiling C object drivers/libtmp_rte_pmd_axgbe.a.p/net_axgbe_axgbe_dev.c.o
[817/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_rm.c.o
[818/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_if_tbl.c.o
[819/2399] Generating symbol file lib/librte_meter.so.21.0.p/librte_meter.so.21.0.symbols
[820/2399] Generating symbol file drivers/librte_bus_vmbus.so.21.0.p/librte_bus_vmbus.so.21.0.symbols
[821/2399] Linking target lib/librte_power.so.21.0
[822/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_hash.c.o
[823/2399] Compiling C object drivers/libtmp_rte_pmd_bnx2x.a.p/net_bnx2x_bnx2x_rxtx.c.o
[824/2399] Compiling C object drivers/libtmp_rte_pmd_axgbe.a.p/net_axgbe_axgbe_phy_impl.c.o
[825/2399] Generating rte_pmd_ark.sym_chk with a meson_exe.py custom command
[826/2399] Generating rte_pmd_zlib_def with a custom command
[827/2399] Linking target lib/librte_acl.so.21.0
[828/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_txq.c.o
[829/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_ring.c.o
[830/2399] Generating rte_mempool_dpaa2.sym_chk with a meson_exe.py custom command
[831/2399] Generating symbol file lib/librte_stack.so.21.0.p/librte_stack.so.21.0.symbols
[832/2399] Generating rte_mempool_dpaa.sym_chk with a meson_exe.py custom command
[833/2399] Generating symbol file lib/librte_graph.so.21.0.p/librte_graph.so.21.0.symbols
[834/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_stats.c.o
[835/2399] Generating symbol file drivers/librte_common_dpaax.so.21.0.p/librte_common_dpaax.so.21.0.symbols
[836/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_session.c.o
[837/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_hcapi_hcapi_cfa_p4.c.o
[838/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_tbl.c.o
[839/2399] Generating rte_pmd_bnxt_mingw with a custom command
[840/2399] Generating rte_pmd_bnxt_def with a custom command
[841/2399] Generating rte_pmd_af_packet.sym_chk with a meson_exe.py custom command
[842/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_shadow_identifier.c.o
[843/2399] Generating rte_mempool_octeontx2.sym_chk with a meson_exe.py custom command
[844/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_rxq.c.o
[845/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_core.c.o
[846/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_global_cfg.c.o
[847/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_reps.c.o
[848/2399] Generating rte_pmd_cxgbe_def with a custom command
[849/2399] Generating rte_pmd_cxgbe_mingw with a custom command
[850/2399] Compiling C object drivers/libtmp_rte_bus_dpaa.a.p/bus_dpaa_base_qbman_qman.c.o
[851/2399] Linking static target drivers/libtmp_rte_bus_dpaa.a
[852/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tfp.c.o
[853/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_msg.c.o
[854/2399] Generating symbol file lib/librte_hash.so.21.0.p/librte_hash.so.21.0.symbols
[855/2399] Compiling C object drivers/libtmp_rte_pmd_qat.a.p/common_qat_qat_common.c.o
[856/2399] Generating rte_bus_dpaa.pmd.c with a custom command
[857/2399] Linking target lib/librte_efd.so.21.0
[858/2399] Compiling C object drivers/libtmp_rte_pmd_axgbe.a.p/net_axgbe_axgbe_ethdev.c.o
[859/2399] Generating symbol file lib/librte_rcu.so.21.0.p/librte_rcu.so.21.0.symbols
[860/2399] Linking static target drivers/libtmp_rte_pmd_axgbe.a
[861/2399] Compiling C object drivers/librte_bus_dpaa.a.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[862/2399] Linking static target drivers/librte_bus_dpaa.a
[863/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_em_internal.c.o
[864/2399] Compiling C object drivers/librte_bus_dpaa.so.21.0.p/meson-generated_.._rte_bus_dpaa.pmd.c.o
[865/2399] Generating symbol file lib/librte_mempool.so.21.0.p/librte_mempool.so.21.0.symbols
[866/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_rxr.c.o
[867/2399] Compiling C object drivers/libtmp_rte_pmd_atlantic.a.p/net_atlantic_atl_rxtx.c.o
[868/2399] Generating symbol file drivers/librte_bus_pci.so.21.0.p/librte_bus_pci.so.21.0.symbols
[869/2399] Linking target lib/librte_member.so.21.0
[870/2399] Generating rte_pmd_axgbe.pmd.c with a custom command
[871/2399] Linking static target drivers/libtmp_rte_pmd_atlantic.a
[872/2399] Generating rte_pmd_dpaa_def with a custom command
[873/2399] Compiling C object drivers/librte_pmd_axgbe.a.p/meson-generated_.._rte_pmd_axgbe.pmd.c.o
[874/2399] Linking static target drivers/librte_pmd_axgbe.a
[875/2399] Generating rte_pmd_atlantic.pmd.c with a custom command
[876/2399] Compiling C object drivers/libtmp_rte_pmd_qat.a.p/common_qat_qat_device.c.o
[877/2399] Generating rte_pmd_dpaa_mingw with a custom command
[878/2399] Generating symbol file lib/librte_acl.so.21.0.p/librte_acl.so.21.0.symbols
[879/2399] Compiling C object drivers/librte_pmd_axgbe.so.21.0.p/meson-generated_.._rte_pmd_axgbe.pmd.c.o
[880/2399] Linking target lib/librte_lpm.so.21.0
[881/2399] Linking target drivers/librte_mempool_stack.so.21.0
[882/2399] Compiling C object drivers/librte_pmd_atlantic.a.p/meson-generated_.._rte_pmd_atlantic.pmd.c.o
[883/2399] Compiling C object drivers/librte_pmd_atlantic.so.21.0.p/meson-generated_.._rte_pmd_atlantic.pmd.c.o
[884/2399] Compiling C object drivers/libtmp_rte_pmd_avp.a.p/net_avp_avp_ethdev.c.o
[885/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_em_common.c.o
[886/2399] Linking target lib/librte_mbuf.so.21.0
[887/2399] Linking target lib/librte_rib.so.21.0
[888/2399] Linking static target drivers/librte_pmd_atlantic.a
[889/2399] Linking static target drivers/libtmp_rte_pmd_avp.a
[890/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_txr.c.o
[891/2399] Generating rte_pmd_avp.pmd.c with a custom command
[892/2399] Generating rte_mempool_ring.sym_chk with a meson_exe.py custom command
[893/2399] Compiling C object drivers/librte_pmd_avp.a.p/meson-generated_.._rte_pmd_avp.pmd.c.o
[894/2399] Linking static target drivers/librte_pmd_avp.a
[895/2399] Generating symbol file drivers/librte_bus_ifpga.so.21.0.p/librte_bus_ifpga.so.21.0.symbols
[896/2399] Compiling C object drivers/librte_pmd_avp.so.21.0.p/meson-generated_.._rte_pmd_avp.pmd.c.o
[897/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_ulp_matcher.c.o
[898/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_class.c.o
[899/2399] Compiling C object drivers/libtmp_rte_pmd_qat.a.p/compress_qat_qat_comp_pmd.c.o
[900/2399] Linking target drivers/librte_mempool_ring.so.21.0
[901/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_tbl.c.o
[902/2399] Generating rte_pmd_dpaa2_def with a custom command
[903/2399] Generating rte_pmd_dpaa2_mingw with a custom command
[904/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2.a.p/net_dpaa2_mc_dpkg.c.o
[905/2399] Compiling C object drivers/libtmp_rte_pmd_qat.a.p/common_qat_qat_qp.c.o
[906/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_ulp_template_db_act.c.o
[907/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_core_tf_em_host.c.o
[908/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_flow.c.o
[909/2399] Compiling C object drivers/libtmp_rte_pmd_zlib.a.p/compress_zlib_zlib_pmd_ops.c.o
[910/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_ulp_def_rules.c.o
[911/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_bnxt_ulp_flow.c.o
[912/2399] Compiling C object drivers/libtmp_rte_pmd_cxgbe.a.p/net_cxgbe_cxgbevf_ethdev.c.o
[913/2399] Compiling C object drivers/libtmp_rte_pmd_cxgbe.a.p/net_cxgbe_smt.c.o
[914/2399] Compiling C object drivers/libtmp_rte_pmd_cxgbe.a.p/net_cxgbe_cxgbevf_main.c.o
[915/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_base.c.o
[916/2399] Compiling C object drivers/libtmp_rte_pmd_cxgbe.a.p/net_cxgbe_l2t.c.o
[917/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_ulp_fc_mgr.c.o
[918/2399] Compiling C object drivers/libtmp_rte_pmd_cxgbe.a.p/net_cxgbe_clip_tbl.c.o
[919/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_ulp_port_db.c.o
[920/2399] Compiling C object drivers/libtmp_rte_pmd_qat.a.p/compress_qat_qat_comp.c.o
[921/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82542.c.o
[922/2399] Linking static target drivers/libtmp_rte_pmd_qat.a
[923/2399] Compiling C object drivers/libtmp_rte_pmd_cxgbe.a.p/net_cxgbe_mps_tcam.c.o
[924/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2.a.p/net_dpaa2_mc_dpdmux.c.o
[925/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_ulp_utils.c.o
[926/2399] Generating rte_pmd_qat.pmd.c with a custom command
[927/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_osdep.c.o
[928/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82540.c.o
[929/2399] Compiling C object drivers/libtmp_rte_pmd_e1000.a.p/net_e1000_e1000_logs.c.o
[930/2399] Compiling C object drivers/librte_pmd_qat.a.p/meson-generated_.._rte_pmd_qat.pmd.c.o
[931/2399] Compiling C object drivers/librte_pmd_qat.so.21.0.p/meson-generated_.._rte_pmd_qat.pmd.c.o
[932/2399] Generating symbol file lib/librte_rib.so.21.0.p/librte_rib.so.21.0.symbols
[933/2399] Linking static target drivers/librte_pmd_qat.a
[934/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa.a.p/net_dpaa_fmlib_fm_vsp.c.o
[935/2399] Generating symbol file lib/librte_lpm.so.21.0.p/librte_lpm.so.21.0.symbols
[936/2399] Compiling C object drivers/libtmp_rte_mempool_bucket.a.p/mempool_bucket_rte_mempool_bucket.c.o
[937/2399] Linking static target drivers/libtmp_rte_mempool_bucket.a
[938/2399] Generating rte_mempool_bucket.pmd.c with a custom command
[939/2399] Generating rte_pmd_axgbe.sym_chk with a meson_exe.py custom command
[940/2399] Generating symbol file lib/librte_mbuf.so.21.0.p/librte_mbuf.so.21.0.symbols
[941/2399] Generating rte_pmd_e1000_def with a custom command
[942/2399] Generating rte_pmd_e1000_mingw with a custom command
[943/2399] Compiling C object drivers/librte_mempool_bucket.a.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[944/2399] Compiling C object drivers/librte_mempool_bucket.so.21.0.p/meson-generated_.._rte_mempool_bucket.pmd.c.o
[945/2399] Linking target lib/librte_fib.so.21.0
[946/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82541.c.o
[947/2399] Generating rte_pmd_avp.sym_chk with a meson_exe.py custom command
[948/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa.a.p/net_dpaa_dpaa_fmc.c.o
[949/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_vf.c.o
[950/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_80003es2lan.c.o
[951/2399] Linking static target drivers/librte_mempool_bucket.a
[952/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_manage.c.o
[953/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82543.c.o
[954/2399] Linking target lib/librte_net.so.21.0
[955/2399] Linking target lib/librte_bbdev.so.21.0
[956/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_api.c.o
[957/2399] Linking target lib/librte_cryptodev.so.21.0
[958/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mbx.c.o
[959/2399] Generating rte_pmd_ena_def with a custom command
[960/2399] Generating rte_pmd_ena_mingw with a custom command
[961/2399] Linking target lib/librte_distributor.so.21.0
[962/2399] Linking target lib/librte_compressdev.so.21.0
[963/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2.a.p/net_dpaa2_dpaa2_mux.c.o
[964/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_i210.c.o
[965/2399] Linking target lib/librte_regexdev.so.21.0
[966/2399] Linking target lib/librte_reorder.so.21.0
[967/2399] Linking target drivers/librte_mempool_octeontx.so.21.0
[968/2399] Generating rte_pmd_enetc_def with a custom command
[969/2399] Generating rte_pmd_atlantic.sym_chk with a meson_exe.py custom command
[970/2399] Linking target lib/librte_sched.so.21.0
[971/2399] Generating rte_pmd_enetc_mingw with a custom command
[972/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa.a.p/net_dpaa_fmlib_fm_lib.c.o
[973/2399] Compiling C object drivers/libtmp_rte_pmd_bond.a.p/net_bonding_rte_eth_bond_8023ad.c.o
[974/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_rte_pmd_bnxt.c.o
[975/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2.a.p/net_dpaa2_base_dpaa2_hw_dpni.c.o
[976/2399] Compiling C object drivers/libtmp_rte_pmd_bnx2x.a.p/net_bnx2x_ecore_sp.c.o
[977/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa.a.p/net_dpaa_dpaa_flow.c.o
[978/2399] Compiling C object drivers/libtmp_rte_pmd_cxgbe.a.p/net_cxgbe_base_t4vf_hw.c.o
[979/2399] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_swx_pipeline.c.o
[980/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2.a.p/net_dpaa2_dpaa2_sparser.c.o
[981/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82571.c.o
[982/2399] Compiling C object drivers/libtmp_rte_pmd_zlib.a.p/compress_zlib_zlib_pmd.c.o
[983/2399] Linking static target drivers/libtmp_rte_pmd_zlib.a
[984/2399] Generating rte_pmd_enic_mingw with a custom command
[985/2399] Generating rte_pmd_enic_def with a custom command
[986/2399] Generating rte_pmd_zlib.pmd.c with a custom command
[987/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_base_vnic_intr.c.o
[988/2399] Compiling C object drivers/librte_pmd_zlib.a.p/meson-generated_.._rte_pmd_zlib.pmd.c.o
[989/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_nvm.c.o
[990/2399] Generating rte_pmd_qat.sym_chk with a meson_exe.py custom command
[991/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_mac.c.o
[992/2399] Compiling C object drivers/libtmp_rte_pmd_cxgbe.a.p/net_cxgbe_cxgbe_flow.c.o
[993/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2.a.p/net_dpaa2_mc_dpni.c.o
[994/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_ulp_rte_parser.c.o
[995/2399] Compiling C object drivers/libtmp_rte_pmd_ena.a.p/net_ena_base_ena_eth_com.c.o
[996/2399] Generating rte_bus_fslmc.sym_chk with a meson_exe.py custom command
[997/2399] Generating rte_pmd_failsafe_def with a custom command
[998/2399] Generating symbol file lib/librte_net.so.21.0.p/librte_net.so.21.0.symbols
[999/2399] Generating rte_pmd_failsafe_mingw with a custom command
[1000/2399] Generating symbol file lib/librte_sched.so.21.0.p/librte_sched.so.21.0.symbols
[1001/2399] Generating symbol file lib/librte_regexdev.so.21.0.p/librte_regexdev.so.21.0.symbols
[1002/2399] Generating rte_mempool_bucket.sym_chk with a meson_exe.py custom command
[1003/2399] Linking target lib/librte_ethdev.so.21.0
[1004/2399] Generating symbol file lib/librte_cryptodev.so.21.0.p/librte_cryptodev.so.21.0.symbols
[1005/2399] Generating symbol file lib/librte_bbdev.so.21.0.p/librte_bbdev.so.21.0.symbols
[1006/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_rxtx_vec_sse.c.o
[1007/2399] Generating symbol file lib/librte_compressdev.so.21.0.p/librte_compressdev.so.21.0.symbols
[1008/2399] Compiling C object drivers/libtmp_rte_pmd_e1000.a.p/net_e1000_igb_pf.c.o
[1009/2399] Linking target lib/librte_cmdline.so.21.0
[1010/2399] Generating symbol file drivers/librte_mempool_octeontx.so.21.0.p/librte_mempool_octeontx.so.21.0.symbols
[1011/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_base_vnic_cq.c.o
[1012/2399] Generating rte_common_sfc_efx.sym_chk with a meson_exe.py custom command
[1013/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_tf_ulp_ulp_mapper.c.o
[1014/2399] Compiling C object drivers/libtmp_rte_pmd_cxgbe.a.p/net_cxgbe_cxgbe_ethdev.c.o
[1015/2399] Compiling C object drivers/libtmp_rte_pmd_cxgbe.a.p/net_cxgbe_cxgbe_filter.c.o
[1016/2399] Linking target drivers/librte_mempool_bucket.so.21.0
[1017/2399] Generating rte_pmd_fm10k_def with a custom command
[1018/2399] Generating rte_pmd_fm10k_mingw with a custom command
[1019/2399] Compiling C object drivers/libtmp_rte_pmd_cxgbe.a.p/net_cxgbe_cxgbe_main.c.o
[1020/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_82575.c.o
[1021/2399] Linking target lib/librte_security.so.21.0
[1022/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_base_vnic_rq.c.o
[1023/2399] Linking target drivers/librte_common_cpt.so.21.0
[1024/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa.a.p/net_dpaa_dpaa_ethdev.c.o
[1025/2399] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_vf.c.o
[1026/2399] Linking target drivers/librte_common_sfc_efx.so.21.0
[1027/2399] Generating symbol file lib/librte_reorder.so.21.0.p/librte_reorder.so.21.0.symbols
[1028/2399] Compiling C object drivers/libtmp_rte_pmd_enetc.a.p/net_enetc_enetc_rxtx.c.o
[1029/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_base_vnic_wq.c.o
[1030/2399] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_api.c.o
[1031/2399] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_common.c.o
[1032/2399] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_tlv.c.o
[1033/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_enic_res.c.o
[1034/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_phy.c.o
[1035/2399] Compiling C object drivers/libtmp_rte_pmd_e1000.a.p/net_e1000_em_ethdev.c.o
[1036/2399] Compiling C object drivers/libtmp_rte_pmd_failsafe.a.p/net_failsafe_failsafe_eal.c.o
[1037/2399] Generating rte_pmd_i40e_def with a custom command
[1038/2399] Generating rte_pmd_i40e_mingw with a custom command
[1039/2399] Compiling C object drivers/libtmp_rte_pmd_bond.a.p/net_bonding_rte_eth_bond_pmd.c.o
[1040/2399] Compiling C object drivers/libtmp_rte_pmd_failsafe.a.p/net_failsafe_failsafe_intr.c.o
[1041/2399] Linking static target drivers/libtmp_rte_pmd_bond.a
[1042/2399] Generating rte_bus_dpaa.sym_chk with a meson_exe.py custom command
[1043/2399] Generating rte_pmd_bond.pmd.c with a custom command
[1044/2399] Compiling C object drivers/librte_pmd_bond.so.21.0.p/meson-generated_.._rte_pmd_bond.pmd.c.o
[1045/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_enic_clsf.c.o
[1046/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_enic_vf_representor.c.o
[1047/2399] Compiling C object drivers/librte_pmd_bond.a.p/meson-generated_.._rte_pmd_bond.pmd.c.o
[1048/2399] Compiling C object drivers/libtmp_rte_pmd_failsafe.a.p/net_failsafe_failsafe.c.o
[1049/2399] Linking static target drivers/librte_pmd_bond.a
[1050/2399] Compiling C object drivers/libtmp_rte_pmd_failsafe.a.p/net_failsafe_failsafe_rxtx.c.o
[1051/2399] Generating symbol file lib/librte_ethdev.so.21.0.p/librte_ethdev.so.21.0.symbols
[1052/2399] Compiling C object drivers/libtmp_rte_pmd_ena.a.p/net_ena_base_ena_com.c.o
[1053/2399] Compiling C object drivers/libtmp_rte_pmd_failsafe.a.p/net_failsafe_failsafe_args.c.o
[1054/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_enic_flow.c.o
[1055/2399] Compiling C object drivers/libtmp_rte_pmd_failsafe.a.p/net_failsafe_failsafe_ether.c.o
[1056/2399] Linking target lib/librte_bitratestats.so.21.0
[1057/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2.a.p/net_dpaa2_dpaa2_ethdev.c.o
[1058/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_ethdev.c.o
[1059/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_enic_rxtx_vec_avx2.c.o
[1060/2399] Compiling C object drivers/libtmp_rte_pmd_failsafe.a.p/net_failsafe_failsafe_flow.c.o
[1061/2399] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_mbx.c.o
[1062/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_base_vnic_dev.c.o
[1063/2399] Compiling C object drivers/libtmp_rte_pmd_enetc.a.p/net_enetc_enetc_ethdev.c.o
[1064/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_enic_ethdev.c.o
[1065/2399] Linking target lib/librte_gso.so.21.0
[1066/2399] Linking target lib/librte_ip_frag.so.21.0
[1067/2399] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_hmc.c.o
[1068/2399] Compiling C object drivers/libtmp_rte_pmd_e1000.a.p/net_e1000_igb_flow.c.o
[1069/2399] Generating symbol file drivers/librte_common_cpt.so.21.0.p/librte_common_cpt.so.21.0.symbols
[1070/2399] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_diag.c.o
[1071/2399] Linking target lib/librte_node.so.21.0
[1072/2399] Linking static target drivers/libtmp_rte_pmd_enetc.a
[1073/2399] Linking target lib/librte_gro.so.21.0
[1074/2399] Generating symbol file drivers/librte_common_sfc_efx.so.21.0.p/librte_common_sfc_efx.so.21.0.symbols
[1075/2399] Linking target lib/librte_eventdev.so.21.0
[1076/2399] Generating rte_pmd_enetc.pmd.c with a custom command
[1077/2399] Generating symbol file lib/librte_security.so.21.0.p/librte_security.so.21.0.symbols
[1078/2399] Compiling C object drivers/libtmp_rte_pmd_bnx2x.a.p/net_bnx2x_bnx2x_stats.c.o
[1079/2399] Linking target drivers/librte_pmd_atlantic.so.21.0
[1080/2399] Linking target drivers/librte_pmd_avp.so.21.0
[1081/2399] Linking target drivers/librte_pmd_axgbe.so.21.0
[1082/2399] Linking target lib/librte_pdump.so.21.0
[1083/2399] Linking target lib/librte_kni.so.21.0
[1084/2399] Compiling C object drivers/librte_pmd_enetc.a.p/meson-generated_.._rte_pmd_enetc.pmd.c.o
[1085/2399] Linking target lib/librte_latencystats.so.21.0
[1086/2399] Linking target lib/librte_bpf.so.21.0
[1087/2399] Linking static target drivers/librte_pmd_enetc.a
[1088/2399] Compiling C object drivers/librte_pmd_enetc.so.21.0.p/meson-generated_.._rte_pmd_enetc.pmd.c.o
[1089/2399] Linking target drivers/librte_pmd_af_packet.so.21.0
[1090/2399] Compiling C object drivers/libtmp_rte_pmd_cxgbe.a.p/net_cxgbe_base_t4_hw.c.o
[1091/2399] Linking target drivers/librte_common_octeontx2.so.21.0
[1092/2399] Linking target drivers/librte_pmd_ark.so.21.0
[1093/2399] Compiling C object drivers/net/e1000/base/libe1000_base.a.p/e1000_ich8lan.c.o
[1094/2399] Generating rte_pmd_hinic_def with a custom command
[1095/2399] Generating rte_pmd_hinic_mingw with a custom command
[1096/2399] Linking static target drivers/net/e1000/base/libe1000_base.a
[1097/2399] Linking target lib/librte_ipsec.so.21.0
[1098/2399] Compiling C object drivers/net/fm10k/base/libfm10k_base.a.p/fm10k_pf.c.o
[1099/2399] Linking static target drivers/net/fm10k/base/libfm10k_base.a
[1100/2399] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_dcb.c.o
[1101/2399] Generating rte_pmd_bond.sym_chk with a meson_exe.py custom command
[1102/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_enic_rxtx.c.o
[1103/2399] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cfg.c.o
[1104/2399] Compiling C object drivers/libtmp_rte_pmd_i40e.a.p/net_i40e_i40e_vf_representor.c.o
[1105/2399] Generating rte_pmd_hns3_def with a custom command
[1106/2399] Generating rte_pmd_hns3_mingw with a custom command
[1107/2399] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_cmdq.c.o
[1108/2399] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwif.c.o
[1109/2399] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_eqs.c.o
[1110/2399] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_lan_hmc.c.o
[1111/2399] Compiling C object drivers/libtmp_rte_pmd_cxgbe.a.p/net_cxgbe_sge.c.o
[1112/2399] Generating symbol file lib/librte_gso.so.21.0.p/librte_gso.so.21.0.symbols
[1113/2399] Linking static target drivers/libtmp_rte_pmd_cxgbe.a
[1114/2399] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mgmt.c.o
[1115/2399] Generating symbol file lib/librte_ip_frag.so.21.0.p/librte_ip_frag.so.21.0.symbols
[1116/2399] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_adminq.c.o
[1117/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2.a.p/net_dpaa2_dpaa2_rxtx.c.o
[1118/2399] Generating rte_pmd_iavf_def with a custom command
[1119/2399] Generating rte_pmd_cxgbe.pmd.c with a custom command
[1120/2399] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_api_cmd.c.o
[1121/2399] Generating rte_pmd_iavf_mingw with a custom command
[1122/2399] Compiling C object drivers/librte_pmd_cxgbe.a.p/meson-generated_.._rte_pmd_cxgbe.pmd.c.o
[1123/2399] Linking target drivers/librte_pmd_bond.so.21.0
[1124/2399] Compiling C object drivers/librte_pmd_cxgbe.so.21.0.p/meson-generated_.._rte_pmd_cxgbe.pmd.c.o
[1125/2399] Linking static target drivers/librte_pmd_cxgbe.a
[1126/2399] Compiling C object drivers/libtmp_rte_pmd_i40e.a.p/net_i40e_i40e_tm.c.o
[1127/2399] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_nicio.c.o
[1128/2399] Generating symbol file lib/librte_kni.so.21.0.p/librte_kni.so.21.0.symbols
[1129/2399] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_wq.c.o
[1130/2399] Generating symbol file drivers/librte_common_octeontx2.so.21.0.p/librte_common_octeontx2.so.21.0.symbols
[1131/2399] Generating rte_pmd_enetc.sym_chk with a meson_exe.py custom command
[1132/2399] Generating symbol file lib/librte_eventdev.so.21.0.p/librte_eventdev.so.21.0.symbols
[1133/2399] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_nvm.c.o
[1134/2399] Linking target drivers/librte_mempool_octeontx2.so.21.0
[1135/2399] Compiling C object lib/librte_vhost.a.p/librte_vhost_virtio_net.c.o
[1136/2399] Linking target drivers/librte_pmd_enetc.so.21.0
[1137/2399] Linking target lib/librte_port.so.21.0
[1138/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_enic_fm_flow.c.o
[1139/2399] Linking target drivers/librte_bus_dpaa.so.21.0
[1140/2399] Compiling C object drivers/libtmp_rte_pmd_e1000.a.p/net_e1000_em_rxtx.c.o
[1141/2399] Compiling C object drivers/libtmp_rte_pmd_i40e.a.p/net_i40e_i40e_pf.c.o
[1142/2399] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_hwdev.c.o
[1143/2399] Linking target drivers/librte_bus_fslmc.so.21.0
[1144/2399] Compiling C object drivers/libtmp_rte_pmd_ena.a.p/net_ena_ena_ethdev.c.o
[1145/2399] Compiling C object drivers/libtmp_rte_pmd_enic.a.p/net_enic_enic_main.c.o
[1146/2399] Linking static target drivers/libtmp_rte_pmd_ena.a
[1147/2399] Linking static target drivers/libtmp_rte_pmd_enic.a
[1148/2399] Generating rte_pmd_ena.pmd.c with a custom command
[1149/2399] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_mbox.c.o
[1150/2399] Compiling C object drivers/libtmp_rte_pmd_hns3.a.p/net_hns3_hns3_mbx.c.o
[1151/2399] Compiling C object drivers/libtmp_rte_pmd_fm10k.a.p/net_fm10k_fm10k_rxtx_vec.c.o
[1152/2399] Compiling C object drivers/libtmp_rte_pmd_hns3.a.p/net_hns3_hns3_regs.c.o
[1153/2399] Compiling C object drivers/libtmp_rte_pmd_hns3.a.p/net_hns3_hns3_mp.c.o
[1154/2399] Compiling C object drivers/librte_pmd_ena.so.21.0.p/meson-generated_.._rte_pmd_ena.pmd.c.o
[1155/2399] Compiling C object drivers/librte_pmd_ena.a.p/meson-generated_.._rte_pmd_ena.pmd.c.o
[1156/2399] Linking static target drivers/librte_pmd_ena.a
[1157/2399] Compiling C object drivers/libtmp_rte_pmd_hns3.a.p/net_hns3_hns3_cmd.c.o
[1158/2399] Generating rte_pmd_enic.pmd.c with a custom command
[1159/2399] Compiling C object drivers/librte_pmd_enic.a.p/meson-generated_.._rte_pmd_enic.pmd.c.o
[1160/2399] Linking static target drivers/librte_pmd_enic.a
[1161/2399] Compiling C object drivers/libtmp_rte_pmd_fm10k.a.p/net_fm10k_fm10k_rxtx.c.o
[1162/2399] Compiling C object drivers/libtmp_rte_pmd_hns3.a.p/net_hns3_hns3_rss.c.o
[1163/2399] Compiling C object drivers/libtmp_rte_pmd_e1000.a.p/net_e1000_igb_rxtx.c.o
[1164/2399] Compiling C object drivers/librte_pmd_enic.so.21.0.p/meson-generated_.._rte_pmd_enic.pmd.c.o
[1165/2399] Compiling C object drivers/libtmp_rte_pmd_hns3.a.p/net_hns3_hns3_intr.c.o
[1166/2399] Compiling C object drivers/libtmp_rte_pmd_hns3.a.p/net_hns3_hns3_stats.c.o
[1167/2399] Generating rte_pmd_cxgbe.sym_chk with a meson_exe.py custom command
[1168/2399] Compiling C object drivers/libtmp_rte_pmd_hns3.a.p/net_hns3_hns3_fdir.c.o
[1169/2399] Generating rte_pmd_ice_def with a custom command
[1170/2399] Generating symbol file drivers/librte_mempool_octeontx2.so.21.0.p/librte_mempool_octeontx2.so.21.0.symbols
[1171/2399] Generating symbol file lib/librte_port.so.21.0.p/librte_port.so.21.0.symbols
[1172/2399] Generating rte_pmd_ice_mingw with a custom command
[1173/2399] Compiling C object drivers/libtmp_rte_pmd_iavf.a.p/net_iavf_iavf_generic_flow.c.o
[1174/2399] Compiling C object drivers/libtmp_rte_pmd_i40e.a.p/net_i40e_i40e_rxtx_vec_sse.c.o
[1175/2399] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_base.c.o
[1176/2399] Compiling C object drivers/libtmp_rte_pmd_hinic.a.p/net_hinic_hinic_pmd_rx.c.o
[1177/2399] Compiling C object drivers/net/hinic/base/libhinic_base.a.p/hinic_pmd_niccfg.c.o
[1178/2399] Generating symbol file drivers/librte_bus_fslmc.so.21.0.p/librte_bus_fslmc.so.21.0.symbols
[1179/2399] Linking static target drivers/net/hinic/base/libhinic_base.a
[1180/2399] Linking target drivers/librte_pmd_cxgbe.so.21.0
[1181/2399] Linking target lib/librte_table.so.21.0
[1182/2399] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl.c.o
[1183/2399] Compiling C object drivers/libtmp_rte_pmd_iavf.a.p/net_iavf_iavf_hash.c.o
[1184/2399] Linking target drivers/librte_mempool_dpaa2.so.21.0
[1185/2399] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_osdep.c.o
[1186/2399] Compiling C object drivers/libtmp_rte_pmd_igc.a.p/net_igc_igc_logs.c.o
[1187/2399] Generating symbol file drivers/librte_bus_dpaa.so.21.0.p/librte_bus_dpaa.so.21.0.symbols
[1188/2399] Generating rte_pmd_igc_def with a custom command
[1189/2399] Generating rte_pmd_igc_mingw with a custom command
[1190/2399] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_nvm.c.o
[1191/2399] Linking target drivers/librte_mempool_dpaa.so.21.0
[1192/2399] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_manage.c.o
[1193/2399] Compiling C object drivers/libtmp_rte_pmd_bnxt.a.p/net_bnxt_bnxt_hwrm.c.o
[1194/2399] Compiling C object drivers/libtmp_rte_pmd_i40e.a.p/net_i40e_i40e_ethdev_vf.c.o
[1195/2399] Generating rte_pmd_ena.sym_chk with a meson_exe.py custom command
[1196/2399] Linking static target drivers/libtmp_rte_pmd_bnxt.a
[1197/2399] Compiling C object drivers/libtmp_rte_pmd_e1000.a.p/net_e1000_igb_ethdev.c.o
[1198/2399] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_i225.c.o
[1199/2399] Compiling C object drivers/libtmp_rte_pmd_failsafe.a.p/net_failsafe_failsafe_ops.c.o
[1200/2399] Linking static target drivers/libtmp_rte_pmd_e1000.a
[1201/2399] Linking static target drivers/libtmp_rte_pmd_failsafe.a
[1202/2399] Generating rte_pmd_enic.sym_chk with a meson_exe.py custom command
[1203/2399] Generating rte_pmd_ipn3ke_def with a custom command
[1204/2399] Compiling C object drivers/libtmp_rte_pmd_fm10k.a.p/net_fm10k_fm10k_ethdev.c.o
[1205/2399] Generating rte_pmd_e1000.pmd.c with a custom command
[1206/2399] Linking static target drivers/libtmp_rte_pmd_fm10k.a
[1207/2399] Compiling C object drivers/libtmp_rte_pmd_iavf.a.p/net_iavf_iavf_fdir.c.o
[1208/2399] Compiling C object drivers/libtmp_rte_pmd_i40e.a.p/net_i40e_i40e_rxtx_vec_avx2.c.o
[1209/2399] Generating rte_pmd_ipn3ke_mingw with a custom command
[1210/2399] Generating rte_pmd_failsafe.pmd.c with a custom command
[1211/2399] Linking target drivers/librte_pmd_ena.so.21.0
[1212/2399] Generating rte_pmd_fm10k.pmd.c with a custom command
[1213/2399] Compiling C object drivers/libtmp_rte_pmd_i40e.a.p/net_i40e_i40e_fdir.c.o
[1214/2399] Compiling C object drivers/librte_pmd_e1000.a.p/meson-generated_.._rte_pmd_e1000.pmd.c.o
[1215/2399] Compiling C object drivers/librte_pmd_e1000.so.21.0.p/meson-generated_.._rte_pmd_e1000.pmd.c.o
[1216/2399] Linking static target drivers/librte_pmd_e1000.a
[1217/2399] Compiling C object drivers/librte_pmd_failsafe.so.21.0.p/meson-generated_.._rte_pmd_failsafe.pmd.c.o
[1218/2399] Compiling C object drivers/librte_pmd_failsafe.a.p/meson-generated_.._rte_pmd_failsafe.pmd.c.o
[1219/2399] Compiling C object drivers/librte_pmd_fm10k.a.p/meson-generated_.._rte_pmd_fm10k.pmd.c.o
[1220/2399] Compiling C object drivers/libtmp_rte_pmd_ice.a.p/net_ice_ice_hash.c.o
[1221/2399] Compiling C object drivers/libtmp_rte_pmd_iavf.a.p/net_iavf_iavf_vchnl.c.o
[1222/2399] Compiling C object drivers/librte_pmd_fm10k.so.21.0.p/meson-generated_.._rte_pmd_fm10k.pmd.c.o
[1223/2399] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_dcb.c.o
[1224/2399] Linking static target drivers/librte_pmd_fm10k.a
[1225/2399] Linking static target drivers/librte_pmd_failsafe.a
[1226/2399] Compiling C object drivers/libtmp_rte_pmd_hinic.a.p/net_hinic_hinic_pmd_flow.c.o
[1227/2399] Linking target drivers/librte_pmd_enic.so.21.0
[1228/2399] Compiling C object drivers/libtmp_rte_pmd_hinic.a.p/net_hinic_hinic_pmd_ethdev.c.o
[1229/2399] Compiling C object drivers/libtmp_rte_pmd_hns3.a.p/net_hns3_hns3_flow.c.o
[1230/2399] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_nvm.c.o
[1231/2399] Compiling C object drivers/libtmp_rte_pmd_hns3.a.p/net_hns3_hns3_ethdev_vf.c.o
[1232/2399] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_api.c.o
[1233/2399] Generating rte_pmd_bnxt.pmd.c with a custom command
[1234/2399] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_hv_vf.c.o
[1235/2399] Generating symbol file lib/librte_table.so.21.0.p/librte_table.so.21.0.symbols
[1236/2399] Compiling C object drivers/libtmp_rte_pmd_hinic.a.p/net_hinic_hinic_pmd_tx.c.o
[1237/2399] Compiling C object drivers/libtmp_rte_pmd_ice.a.p/net_ice_ice_generic_flow.c.o
[1238/2399] Compiling C object drivers/librte_pmd_bnxt.a.p/meson-generated_.._rte_pmd_bnxt.pmd.c.o
[1239/2399] Linking static target drivers/libtmp_rte_pmd_hinic.a
[1240/2399] Compiling C object drivers/libtmp_rte_pmd_hns3.a.p/net_hns3_hns3_dcb.c.o
[1241/2399] Compiling C object drivers/librte_pmd_bnxt.so.21.0.p/meson-generated_.._rte_pmd_bnxt.pmd.c.o
[1242/2399] Compiling C object drivers/libtmp_rte_pmd_ice.a.p/net_ice_ice_dcf_parent.c.o
[1243/2399] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_controlq.c.o
[1244/2399] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_fdir.c.o
[1245/2399] Linking static target drivers/librte_pmd_bnxt.a
[1246/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa.a.p/net_dpaa_dpaa_rxtx.c.o
[1247/2399] Generating rte_pmd_hinic.pmd.c with a custom command
[1248/2399] Linking static target drivers/libtmp_rte_pmd_dpaa.a
[1249/2399] Compiling C object drivers/libtmp_rte_pmd_iavf.a.p/net_iavf_iavf_ethdev.c.o
[1250/2399] Compiling C object drivers/librte_pmd_hinic.a.p/meson-generated_.._rte_pmd_hinic.pmd.c.o
[1251/2399] Generating rte_pmd_dpaa.pmd.c with a custom command
[1252/2399] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82598.c.o
[1253/2399] Compiling C object drivers/librte_pmd_hinic.so.21.0.p/meson-generated_.._rte_pmd_hinic.pmd.c.o
[1254/2399] Linking static target drivers/librte_pmd_hinic.a
[1255/2399] Linking target lib/librte_flow_classify.so.21.0
[1256/2399] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_mac.c.o
[1257/2399] Compiling C object drivers/librte_pmd_dpaa.a.p/meson-generated_.._rte_pmd_dpaa.pmd.c.o
[1258/2399] Generating symbol file drivers/librte_mempool_dpaa2.so.21.0.p/librte_mempool_dpaa2.so.21.0.symbols
[1259/2399] Compiling C object drivers/librte_pmd_dpaa.so.21.0.p/meson-generated_.._rte_pmd_dpaa.pmd.c.o
[1260/2399] Linking static target drivers/librte_pmd_dpaa.a
[1261/2399] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_acl_ctrl.c.o
[1262/2399] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_mbx.c.o
[1263/2399] Generating rte_pmd_ixgbe_def with a custom command
[1264/2399] Generating rte_pmd_ixgbe_mingw with a custom command
[1265/2399] Generating rte_pmd_kni_mingw with a custom command
[1266/2399] Compiling C object drivers/libtmp_rte_pmd_i40e.a.p/net_i40e_rte_pmd_i40e.c.o
[1267/2399] Generating rte_pmd_kni_def with a custom command
[1268/2399] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb_82599.c.o
[1269/2399] Compiling C object drivers/libtmp_rte_pmd_ixgbe.a.p/net_ixgbe_ixgbe_82599_bypass.c.o
[1270/2399] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_vf.c.o
[1271/2399] Generating symbol file drivers/librte_mempool_dpaa.so.21.0.p/librte_mempool_dpaa.so.21.0.symbols
[1272/2399] Generating rte_pmd_liquidio_mingw with a custom command
[1273/2399] Generating rte_pmd_liquidio_def with a custom command
[1274/2399] Compiling C object drivers/libtmp_rte_pmd_igc.a.p/net_igc_igc_flow.c.o
[1275/2399] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82598.c.o
[1276/2399] Generating rte_pmd_e1000.sym_chk with a meson_exe.py custom command
[1277/2399] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x540.c.o
[1278/2399] Generating rte_pmd_memif_def with a custom command
[1279/2399] Generating rte_pmd_fm10k.sym_chk with a meson_exe.py custom command
[1280/2399] Generating rte_pmd_memif_mingw with a custom command
[1281/2399] Compiling C object drivers/net/i40e/base/libi40e_base.a.p/i40e_common.c.o
[1282/2399] Linking static target drivers/net/i40e/base/libi40e_base.a
[1283/2399] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_api.c.o
[1284/2399] Generating rte_pmd_netvsc_def with a custom command
[1285/2399] Linking target drivers/librte_pmd_fm10k.so.21.0
[1286/2399] Compiling C object drivers/libtmp_rte_pmd_i40e.a.p/net_i40e_i40e_flow.c.o
[1287/2399] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_dcb.c.o
[1288/2399] Generating rte_pmd_netvsc_mingw with a custom command
[1289/2399] Generating rte_pmd_failsafe.sym_chk with a meson_exe.py custom command
[1290/2399] Linking target drivers/librte_pmd_e1000.so.21.0
[1291/2399] Compiling C object drivers/libtmp_rte_pmd_igc.a.p/net_igc_igc_filter.c.o
[1292/2399] Compiling C object drivers/libtmp_rte_pmd_ipn3ke.a.p/net_ipn3ke_ipn3ke_ethdev.c.o
[1293/2399] Compiling C object drivers/libtmp_rte_pmd_ice.a.p/net_ice_ice_dcf_ethdev.c.o
[1294/2399] Compiling C object drivers/libtmp_rte_pmd_ice.a.p/net_ice_ice_dcf.c.o
[1295/2399] Linking target drivers/librte_pmd_failsafe.so.21.0
[1296/2399] Compiling C object drivers/libtmp_rte_pmd_nfp.a.p/net_nfp_nfpcore_nfp_crc.c.o
[1297/2399] Generating rte_pmd_bnxt.sym_chk with a meson_exe.py custom command
[1298/2399] Compiling C object drivers/libtmp_rte_pmd_ice.a.p/net_ice_ice_fdir_filter.c.o
[1299/2399] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_82599.c.o
[1300/2399] Compiling C object drivers/libtmp_rte_pmd_iavf.a.p/net_iavf_iavf_rxtx_vec_avx2.c.o
[1301/2399] Generating rte_pmd_nfp_def with a custom command
[1302/2399] Generating rte_pmd_hinic.sym_chk with a meson_exe.py custom command
[1303/2399] Generating rte_pmd_nfp_mingw with a custom command
[1304/2399] Compiling C object drivers/net/igc/base/libigc_base.a.p/igc_phy.c.o
[1305/2399] Linking static target drivers/net/igc/base/libigc_base.a
[1306/2399] Compiling C object drivers/libtmp_rte_pmd_ixgbe.a.p/net_ixgbe_ixgbe_vf_representor.c.o
[1307/2399] Generating rte_pmd_null_def with a custom command
[1308/2399] Generating rte_pmd_dpaa.sym_chk with a meson_exe.py custom command
[1309/2399] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_phy.c.o
[1310/2399] Linking target drivers/librte_pmd_bnxt.so.21.0
[1311/2399] Generating rte_pmd_null_mingw with a custom command
[1312/2399] Linking target drivers/librte_pmd_hinic.so.21.0
[1313/2399] Compiling C object drivers/libtmp_rte_pmd_ipn3ke.a.p/net_ipn3ke_ipn3ke_tm.c.o
[1314/2399] Linking target drivers/librte_pmd_dpaa.so.21.0
[1315/2399] Compiling C object drivers/libtmp_rte_pmd_ipn3ke.a.p/net_ipn3ke_ipn3ke_flow.c.o
[1316/2399] Compiling C object drivers/libtmp_rte_pmd_ixgbe.a.p/net_ixgbe_ixgbe_bypass.c.o
[1317/2399] Generating rte_pmd_octeontx_def with a custom command
[1318/2399] Generating rte_pmd_octeontx_mingw with a custom command
[1319/2399] Compiling C object drivers/libtmp_rte_pmd_ice.a.p/net_ice_ice_rxtx_vec_avx2.c.o
[1320/2399] Compiling C object drivers/libtmp_rte_pmd_kni.a.p/net_kni_rte_eth_kni.c.o
[1321/2399] Linking static target drivers/libtmp_rte_pmd_kni.a
[1322/2399] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkivf.c.o
[1323/2399] Generating rte_pmd_kni.pmd.c with a custom command
[1324/2399] Compiling C object drivers/libtmp_rte_pmd_ixgbe.a.p/net_ixgbe_ixgbe_ipsec.c.o
[1325/2399] Compiling C object drivers/librte_pmd_kni.a.p/meson-generated_.._rte_pmd_kni.pmd.c.o
[1326/2399] Compiling C object drivers/libtmp_rte_pmd_liquidio.a.p/net_liquidio_base_lio_mbox.c.o
[1327/2399] Linking static target drivers/librte_pmd_kni.a
[1328/2399] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_bgx.c.o
[1329/2399] Compiling C object drivers/libtmp_rte_pmd_liquidio.a.p/net_liquidio_base_lio_23xx_vf.c.o
[1330/2399] Compiling C object drivers/libtmp_rte_pmd_netvsc.a.p/net_netvsc_hn_nvs.c.o
[1331/2399] Compiling C object drivers/librte_pmd_kni.so.21.0.p/meson-generated_.._rte_pmd_kni.pmd.c.o
[1332/2399] Compiling C object drivers/libtmp_rte_pmd_ixgbe.a.p/net_ixgbe_ixgbe_pf.c.o
[1333/2399] Compiling C object drivers/libtmp_rte_pmd_ixgbe.a.p/net_ixgbe_ixgbe_tm.c.o
[1334/2399] Compiling C object drivers/libtmp_rte_pmd_iavf.a.p/net_iavf_iavf_rxtx_vec_sse.c.o
[1335/2399] Compiling C object drivers/libtmp_rte_pmd_igc.a.p/net_igc_igc_ethdev.c.o
[1336/2399] Compiling C object drivers/libtmp_rte_pmd_nfp.a.p/net_nfp_nfpcore_nfp_nsp_cmds.c.o
[1337/2399] Compiling C object drivers/net/octeontx/base/libocteontx_base.a.p/octeontx_pkovf.c.o
[1338/2399] Linking static target drivers/net/octeontx/base/libocteontx_base.a
[1339/2399] Compiling C object drivers/libtmp_rte_pmd_nfp.a.p/net_nfp_nfpcore_nfp_mip.c.o
[1340/2399] Compiling C object drivers/libtmp_rte_pmd_ixgbe.a.p/net_ixgbe_ixgbe_fdir.c.o
[1341/2399] Compiling C object drivers/libtmp_rte_pmd_nfp.a.p/net_nfp_nfpcore_nfp_rtsym.c.o
[1342/2399] Compiling C object drivers/libtmp_rte_pmd_nfp.a.p/net_nfp_nfpcore_nfp_resource.c.o
[1343/2399] Compiling C object drivers/libtmp_rte_pmd_nfp.a.p/net_nfp_nfpcore_nfp_nffw.c.o
[1344/2399] Compiling C object drivers/libtmp_rte_pmd_nfp.a.p/net_nfp_nfpcore_nfp_hwinfo.c.o
[1345/2399] Compiling C object drivers/libtmp_rte_pmd_netvsc.a.p/net_netvsc_hn_rndis.c.o
[1346/2399] Generating rte_pmd_octeontx2_mingw with a custom command
[1347/2399] Compiling C object drivers/libtmp_rte_pmd_hns3.a.p/net_hns3_hns3_ethdev.c.o
[1348/2399] Compiling C object drivers/libtmp_rte_pmd_netvsc.a.p/net_netvsc_hn_vf.c.o
[1349/2399] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_common.c.o
[1350/2399] Compiling C object drivers/libtmp_rte_pmd_nfp.a.p/net_nfp_nfpcore_nfp_mutex.c.o
[1351/2399] Compiling C object drivers/libtmp_rte_pmd_nfp.a.p/net_nfp_nfpcore_nfp_nsp.c.o
[1352/2399] Compiling C object drivers/libtmp_rte_pmd_bnx2x.a.p/net_bnx2x_bnx2x.c.o
[1353/2399] Generating rte_pmd_octeontx2_def with a custom command
[1354/2399] Compiling C object drivers/libtmp_rte_pmd_netvsc.a.p/net_netvsc_hn_ethdev.c.o
[1355/2399] Generating rte_pmd_pcap_def with a custom command
[1356/2399] Generating rte_pmd_pcap_mingw with a custom command
[1357/2399] Compiling C object drivers/libtmp_rte_pmd_ipn3ke.a.p/net_ipn3ke_ipn3ke_representor.c.o
[1358/2399] Linking static target drivers/libtmp_rte_pmd_ipn3ke.a
[1359/2399] Compiling C object drivers/libtmp_rte_pmd_ixgbe.a.p/net_ixgbe_rte_pmd_ixgbe.c.o
[1360/2399] Generating rte_pmd_pfe_def with a custom command
[1361/2399] Generating rte_pmd_pfe_mingw with a custom command
[1362/2399] Generating rte_pmd_ipn3ke.pmd.c with a custom command
[1363/2399] Compiling C object drivers/librte_pmd_ipn3ke.a.p/meson-generated_.._rte_pmd_ipn3ke.pmd.c.o
[1364/2399] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x550.c.o
[1365/2399] Linking static target drivers/librte_pmd_ipn3ke.a
[1366/2399] Compiling C object drivers/librte_pmd_ipn3ke.so.21.0.p/meson-generated_.._rte_pmd_ipn3ke.pmd.c.o
[1367/2399] Compiling C object drivers/libtmp_rte_pmd_nfp.a.p/net_nfp_nfpcore_nfp_nsp_eth.c.o
[1368/2399] Generating symbol file drivers/librte_pmd_dpaa.so.21.0.p/librte_pmd_dpaa.so.21.0.symbols
[1369/2399] Compiling C object drivers/libtmp_rte_pmd_ice.a.p/net_ice_ice_switch_filter.c.o
[1370/2399] Compiling C object drivers/libtmp_rte_pmd_memif.a.p/net_memif_memif_socket.c.o
[1371/2399] Generating rte_pmd_kni.sym_chk with a meson_exe.py custom command
[1372/2399] Compiling C object drivers/libtmp_rte_pmd_nfp.a.p/net_nfp_nfpcore_nfp_cppcore.c.o
[1373/2399] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_common.c.o
[1374/2399] Linking target drivers/librte_pmd_kni.so.21.0
[1375/2399] Linking static target drivers/net/ixgbe/base/libixgbe_base.a
[1376/2399] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_sched.c.o
[1377/2399] Compiling C object drivers/libtmp_rte_pmd_nfp.a.p/net_nfp_nfpcore_nfp_cpp_pcie_ops.c.o
[1378/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx.a.p/net_octeontx_octeontx_ethdev_ops.c.o
[1379/2399] Compiling C object drivers/libtmp_rte_pmd_ice.a.p/net_ice_ice_rxtx_vec_sse.c.o
[1380/2399] Compiling C object drivers/libtmp_rte_pmd_liquidio.a.p/net_liquidio_lio_ethdev.c.o
[1381/2399] Compiling C object drivers/libtmp_rte_pmd_iavf.a.p/net_iavf_iavf_rxtx.c.o
[1382/2399] Linking static target drivers/libtmp_rte_pmd_iavf.a
[1383/2399] Compiling C object drivers/libtmp_rte_pmd_bnx2x.a.p/net_bnx2x_elink.c.o
[1384/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_mac.c.o
[1385/2399] Linking static target drivers/libtmp_rte_pmd_bnx2x.a
[1386/2399] Compiling C object drivers/libtmp_rte_pmd_igc.a.p/net_igc_igc_txrx.c.o
[1387/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_rss.c.o
[1388/2399] Linking static target drivers/libtmp_rte_pmd_igc.a
[1389/2399] Generating rte_pmd_iavf.pmd.c with a custom command
[1390/2399] Generating rte_pmd_igc.pmd.c with a custom command
[1391/2399] Generating rte_pmd_bnx2x.pmd.c with a custom command
[1392/2399] Compiling C object drivers/librte_pmd_iavf.a.p/meson-generated_.._rte_pmd_iavf.pmd.c.o
[1393/2399] Compiling C object drivers/librte_pmd_bnx2x.a.p/meson-generated_.._rte_pmd_bnx2x.pmd.c.o
[1394/2399] Compiling C object drivers/librte_pmd_iavf.so.21.0.p/meson-generated_.._rte_pmd_iavf.pmd.c.o
[1395/2399] Linking static target drivers/librte_pmd_bnx2x.a
[1396/2399] Linking static target drivers/librte_pmd_iavf.a
[1397/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_flow_ctrl.c.o
[1398/2399] Compiling C object drivers/librte_pmd_bnx2x.so.21.0.p/meson-generated_.._rte_pmd_bnx2x.pmd.c.o
[1399/2399] Generating rte_pmd_ipn3ke.sym_chk with a meson_exe.py custom command
[1400/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_ptp.c.o
[1401/2399] Compiling C object drivers/librte_pmd_igc.a.p/meson-generated_.._rte_pmd_igc.pmd.c.o
[1402/2399] Compiling C object drivers/librte_pmd_igc.so.21.0.p/meson-generated_.._rte_pmd_igc.pmd.c.o
[1403/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_link.c.o
[1404/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_stats.c.o
[1405/2399] Linking static target drivers/librte_pmd_igc.a
[1406/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_lookup.c.o
[1407/2399] Compiling C object drivers/libtmp_rte_pmd_null.a.p/net_null_rte_eth_null.c.o
[1408/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_mcast.c.o
[1409/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx.a.p/net_octeontx_octeontx_ethdev.c.o
[1410/2399] Compiling C object drivers/libtmp_rte_pmd_liquidio.a.p/net_liquidio_lio_rxtx.c.o
[1411/2399] Linking static target drivers/libtmp_rte_pmd_null.a
[1412/2399] Linking static target drivers/libtmp_rte_pmd_liquidio.a
[1413/2399] Generating rte_pmd_null.pmd.c with a custom command
[1414/2399] Generating rte_pmd_qede_def with a custom command
[1415/2399] Generating rte_pmd_qede_mingw with a custom command
[1416/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_flow_parse.c.o
[1417/2399] Compiling C object drivers/libtmp_rte_pmd_hns3.a.p/net_hns3_hns3_rxtx.c.o
[1418/2399] Generating rte_pmd_ring_def with a custom command
[1419/2399] Generating rte_pmd_liquidio.pmd.c with a custom command
[1420/2399] Generating rte_pmd_ring_mingw with a custom command
[1421/2399] Compiling C object drivers/librte_pmd_null.so.21.0.p/meson-generated_.._rte_pmd_null.pmd.c.o
[1422/2399] Compiling C object drivers/librte_pmd_null.a.p/meson-generated_.._rte_pmd_null.pmd.c.o
[1423/2399] Linking static target drivers/libtmp_rte_pmd_hns3.a
[1424/2399] Linking static target drivers/librte_pmd_null.a
[1425/2399] Compiling C object drivers/librte_pmd_liquidio.a.p/meson-generated_.._rte_pmd_liquidio.pmd.c.o
[1426/2399] Linking target drivers/librte_pmd_ipn3ke.so.21.0
[1427/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_ethdev_irq.c.o
[1428/2399] Linking static target drivers/librte_pmd_liquidio.a
[1429/2399] Compiling C object drivers/librte_pmd_liquidio.so.21.0.p/meson-generated_.._rte_pmd_liquidio.pmd.c.o
[1430/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/bcm_osal.c.o
[1431/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_ethdev_devargs.c.o
[1432/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_ethdev_ops.c.o
[1433/2399] Generating rte_pmd_hns3.pmd.c with a custom command
[1434/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_vlan.c.o
[1435/2399] Compiling C object drivers/libtmp_rte_pmd_i40e.a.p/net_i40e_i40e_rxtx.c.o
[1436/2399] Compiling C object drivers/libtmp_rte_pmd_pfe.a.p/net_pfe_pfe_hal.c.o
[1437/2399] Compiling C object drivers/librte_pmd_hns3.a.p/meson-generated_.._rte_pmd_hns3.pmd.c.o
[1438/2399] Compiling C object drivers/librte_pmd_hns3.so.21.0.p/meson-generated_.._rte_pmd_hns3.pmd.c.o
[1439/2399] Linking static target drivers/librte_pmd_hns3.a
[1440/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_ops.c.o
[1441/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_ethdev_sec.c.o
[1442/2399] Compiling C object drivers/libtmp_rte_pmd_ice.a.p/net_ice_ice_ethdev.c.o
[1443/2399] Compiling C object drivers/libtmp_rte_pmd_pfe.a.p/net_pfe_pfe_hif.c.o
[1444/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_dp.c.o
[1445/2399] Generating rte_pmd_iavf.sym_chk with a meson_exe.py custom command
[1446/2399] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flow.c.o
[1447/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sp_commands.c.o
[1448/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx.a.p/net_octeontx_octeontx_rxtx.c.o
[1449/2399] Generating rte_pmd_sfc_def with a custom command
[1450/2399] Linking static target drivers/libtmp_rte_pmd_octeontx.a
[1451/2399] Generating rte_pmd_octeontx.pmd.c with a custom command
[1452/2399] Generating rte_pmd_sfc_mingw with a custom command
[1453/2399] Linking target drivers/librte_pmd_iavf.so.21.0
[1454/2399] Compiling C object drivers/libtmp_rte_pmd_ixgbe.a.p/net_ixgbe_ixgbe_rxtx_vec_sse.c.o
[1455/2399] Compiling C object drivers/libtmp_rte_pmd_pfe.a.p/net_pfe_pfe_hif_lib.c.o
[1456/2399] Compiling C object drivers/librte_pmd_octeontx.so.21.0.p/meson-generated_.._rte_pmd_octeontx.pmd.c.o
[1457/2399] Compiling C object drivers/librte_pmd_octeontx.a.p/meson-generated_.._rte_pmd_octeontx.pmd.c.o
[1458/2399] Linking static target drivers/librte_pmd_octeontx.a
[1459/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_flow_utils.c.o
[1460/2399] Generating rte_pmd_bnx2x.sym_chk with a meson_exe.py custom command
[1461/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_ethdev_debug.c.o
[1462/2399] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_flex_pipe.c.o
[1463/2399] Generating rte_pmd_igc.sym_chk with a meson_exe.py custom command
[1464/2399] Compiling C object drivers/libtmp_rte_pmd_ixgbe.a.p/net_ixgbe_ixgbe_flow.c.o
[1465/2399] Compiling C object drivers/libtmp_rte_pmd_qede.a.p/net_qede_qede_regs.c.o
[1466/2399] Generating rte_pmd_liquidio.sym_chk with a meson_exe.py custom command
[1467/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_kvargs.c.o
[1468/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_mcdi.c.o
[1469/2399] Compiling C object drivers/libtmp_rte_pmd_pfe.a.p/net_pfe_pfe_ethdev.c.o
[1470/2399] Compiling C object drivers/libtmp_rte_pmd_memif.a.p/net_memif_rte_eth_memif.c.o
[1471/2399] Linking static target drivers/libtmp_rte_pmd_pfe.a
[1472/2399] Generating symbol file drivers/librte_pmd_ipn3ke.so.21.0.p/librte_pmd_ipn3ke.so.21.0.symbols
[1473/2399] Linking static target drivers/libtmp_rte_pmd_memif.a
[1474/2399] Generating rte_pmd_null.sym_chk with a meson_exe.py custom command
[1475/2399] Generating rte_pmd_memif.pmd.c with a custom command
[1476/2399] Generating rte_pmd_pfe.pmd.c with a custom command
[1477/2399] Compiling C object drivers/libtmp_rte_pmd_qede.a.p/net_qede_qede_sriov.c.o
[1478/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_sriov.c.o
[1479/2399] Linking target drivers/librte_pmd_liquidio.so.21.0
[1480/2399] Linking target drivers/librte_pmd_bnx2x.so.21.0
[1481/2399] Compiling C object drivers/librte_pmd_memif.a.p/meson-generated_.._rte_pmd_memif.pmd.c.o
[1482/2399] Compiling C object drivers/librte_pmd_memif.so.21.0.p/meson-generated_.._rte_pmd_memif.pmd.c.o
[1483/2399] Linking target drivers/librte_pmd_igc.so.21.0
[1484/2399] Compiling C object drivers/librte_pmd_pfe.a.p/meson-generated_.._rte_pmd_pfe.pmd.c.o
[1485/2399] Linking static target drivers/librte_pmd_memif.a
[1486/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dcbx.c.o
[1487/2399] Linking static target drivers/librte_pmd_pfe.a
[1488/2399] Compiling C object drivers/librte_pmd_pfe.so.21.0.p/meson-generated_.._rte_pmd_pfe.pmd.c.o
[1489/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_flow.c.o
[1490/2399] Generating rte_pmd_softnic_def with a custom command
[1491/2399] Generating rte_pmd_softnic_mingw with a custom command
[1492/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_filter.c.o
[1493/2399] Compiling C object drivers/libtmp_rte_pmd_netvsc.a.p/net_netvsc_hn_rxtx.c.o
[1494/2399] Generating rte_pmd_hns3.sym_chk with a meson_exe.py custom command
[1495/2399] Linking target drivers/librte_pmd_null.so.21.0
[1496/2399] Linking static target drivers/libtmp_rte_pmd_netvsc.a
[1497/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_hw.c.o
[1498/2399] Generating rte_pmd_tap_def with a custom command
[1499/2399] Generating rte_pmd_netvsc.pmd.c with a custom command
[1500/2399] Generating rte_pmd_tap_mingw with a custom command
[1501/2399] Compiling C object drivers/librte_pmd_netvsc.a.p/meson-generated_.._rte_pmd_netvsc.pmd.c.o
[1502/2399] Linking static target drivers/librte_pmd_netvsc.a
[1503/2399] Compiling C object drivers/librte_pmd_netvsc.so.21.0.p/meson-generated_.._rte_pmd_netvsc.pmd.c.o
[1504/2399] Compiling C object drivers/libtmp_rte_pmd_qede.a.p/net_qede_qede_main.c.o
[1505/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_conn.c.o
[1506/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_spq.c.o
[1507/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_ev.c.o
[1508/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_port.c.o
[1509/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_intr.c.o
[1510/2399] Linking target drivers/librte_pmd_hns3.so.21.0
[1511/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc.c.o
[1512/2399] Compiling C object drivers/libtmp_rte_pmd_ice.a.p/net_ice_ice_rxtx.c.o
[1513/2399] Linking static target drivers/libtmp_rte_pmd_ice.a
[1514/2399] Generating rte_pmd_thunderx_def with a custom command
[1515/2399] Generating rte_pmd_vdev_netvsc_def with a custom command
[1516/2399] Generating rte_pmd_thunderx_mingw with a custom command
[1517/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_int.c.o
[1518/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_tso.c.o
[1519/2399] Compiling C object drivers/libtmp_rte_pmd_nfp.a.p/net_nfp_nfp_net.c.o
[1520/2399] Generating rte_pmd_vdev_netvsc_mingw with a custom command
[1521/2399] Generating rte_pmd_octeontx.sym_chk with a meson_exe.py custom command
[1522/2399] Linking static target drivers/libtmp_rte_pmd_nfp.a
[1523/2399] Compiling C object drivers/libtmp_rte_pmd_tap.a.p/net_tap_tap_netlink.c.o
[1524/2399] Generating rte_pmd_ice.pmd.c with a custom command
[1525/2399] Generating rte_pmd_vhost_def with a custom command
[1526/2399] Generating rte_pmd_vhost_mingw with a custom command
[1527/2399] Compiling C object drivers/librte_pmd_ice.a.p/meson-generated_.._rte_pmd_ice.pmd.c.o
[1528/2399] Compiling C object drivers/librte_pmd_ice.so.21.0.p/meson-generated_.._rte_pmd_ice.pmd.c.o
[1529/2399] Generating rte_pmd_nfp.pmd.c with a custom command
[1530/2399] Compiling C object drivers/libtmp_rte_pmd_thunderx.a.p/net_thunderx_nicvf_svf.c.o
[1531/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_cxt.c.o
[1532/2399] Linking target drivers/librte_pmd_octeontx.so.21.0
[1533/2399] Compiling C object drivers/libtmp_rte_pmd_qede.a.p/net_qede_qede_filter.c.o
[1534/2399] Compiling C object drivers/librte_pmd_nfp.a.p/meson-generated_.._rte_pmd_nfp.pmd.c.o
[1535/2399] Compiling C object drivers/librte_pmd_nfp.so.21.0.p/meson-generated_.._rte_pmd_nfp.pmd.c.o
[1536/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_rte_eth_softnic_link.c.o
[1537/2399] Linking static target drivers/librte_pmd_nfp.a
[1538/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_rte_eth_softnic_mempool.c.o
[1539/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_init_fw_funcs.c.o
[1540/2399] Generating rte_pmd_pfe.sym_chk with a meson_exe.py custom command
[1541/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_tm.c.o
[1542/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_rte_eth_softnic_swq.c.o
[1543/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_l2.c.o
[1544/2399] Generating rte_pmd_virtio_mingw with a custom command
[1545/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_rte_eth_softnic_tap.c.o
[1546/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_rte_eth_softnic_cryptodev.c.o
[1547/2399] Generating rte_pmd_virtio_def with a custom command
[1548/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_vf.c.o
[1549/2399] Generating rte_pmd_vmxnet3_mingw with a custom command
[1550/2399] Linking target drivers/librte_pmd_pfe.so.21.0
[1551/2399] Generating rte_pmd_memif.sym_chk with a meson_exe.py custom command
[1552/2399] Generating rte_pmd_vmxnet3_def with a custom command
[1553/2399] Generating rte_rawdev_dpaa2_cmdif_def with a custom command
[1554/2399] Generating rte_rawdev_dpaa2_cmdif_mingw with a custom command
[1555/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_tx.c.o
[1556/2399] Generating rte_rawdev_dpaa2_qdma_def with a custom command
[1557/2399] Compiling C object drivers/libtmp_rte_pmd_tap.a.p/net_tap_tap_intr.c.o
[1558/2399] Compiling C object drivers/libtmp_rte_pmd_tap.a.p/net_tap_tap_bpf_api.c.o
[1559/2399] Generating rte_rawdev_dpaa2_qdma_mingw with a custom command
[1560/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_parser.c.o
[1561/2399] Compiling C object drivers/libtmp_rte_pmd_tap.a.p/net_tap_tap_tcmsgs.c.o
[1562/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_ef10_essb_rx.c.o
[1563/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_rte_eth_softnic_meter.c.o
[1564/2399] Linking target drivers/librte_pmd_memif.so.21.0
[1565/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_rte_eth_softnic_action.c.o
[1566/2399] Generating rte_pmd_netvsc.sym_chk with a meson_exe.py custom command
[1567/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_ethdev.c.o
[1568/2399] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_bsvf.c.o
[1569/2399] Linking target drivers/librte_pmd_netvsc.so.21.0
[1570/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_flow.c.o
[1571/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_rte_eth_softnic.c.o
[1572/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_ef10_rx.c.o
[1573/2399] Generating symbol file drivers/librte_pmd_octeontx.so.21.0.p/librte_pmd_octeontx.so.21.0.symbols
[1574/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_rte_eth_softnic_pipeline.c.o
[1575/2399] Compiling C object drivers/libtmp_rte_rawdev_dpaa2_cmdif.a.p/raw_dpaa2_cmdif_dpaa2_cmdif.c.o
[1576/2399] Compiling C object drivers/libtmp_rte_pmd_virtio.a.p/net_virtio_virtio_rxtx_simple_sse.c.o
[1577/2399] Linking static target drivers/libtmp_rte_rawdev_dpaa2_cmdif.a
[1578/2399] Generating rte_rawdev_dpaa2_cmdif.pmd.c with a custom command
[1579/2399] Compiling C object drivers/libtmp_rte_pmd_virtio.a.p/net_virtio_virtio_rxtx_simple.c.o
[1580/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_rx.c.o
[1581/2399] Compiling C object drivers/librte_rawdev_dpaa2_cmdif.a.p/meson-generated_.._rte_rawdev_dpaa2_cmdif.pmd.c.o
[1582/2399] Generating rte_pmd_nfp.sym_chk with a meson_exe.py custom command
[1583/2399] Linking static target drivers/librte_rawdev_dpaa2_cmdif.a
[1584/2399] Compiling C object drivers/librte_rawdev_dpaa2_cmdif.so.21.0.p/meson-generated_.._rte_rawdev_dpaa2_cmdif.pmd.c.o
[1585/2399] Compiling C object drivers/libtmp_rte_pmd_virtio.a.p/net_virtio_virtio_user_vhost_vdpa.c.o
[1586/2399] Generating rte_rawdev_ifpga_mingw with a custom command
[1587/2399] Generating rte_rawdev_ifpga_def with a custom command
[1588/2399] Compiling C object drivers/net/ice/base/libice_base.a.p/ice_switch.c.o
[1589/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_ethdev.c.o
[1590/2399] Linking static target drivers/net/ice/base/libice_base.a
[1591/2399] Compiling C object drivers/libtmp_rte_pmd_virtio.a.p/net_virtio_virtio_user_vhost_kernel_tap.c.o
[1592/2399] Linking static target drivers/librte_pmd_ice.a
[1593/2399] Compiling C object drivers/libtmp_rte_pmd_virtio.a.p/net_virtio_virtio_user_vhost_user.c.o
[1594/2399] Compiling C object drivers/libtmp_rte_pmd_ring.a.p/net_ring_rte_eth_ring.c.o
[1595/2399] Linking target drivers/librte_pmd_nfp.so.21.0
[1596/2399] Linking static target drivers/libtmp_rte_pmd_ring.a
[1597/2399] Generating rte_pmd_ring.pmd.c with a custom command
[1598/2399] Generating rte_rawdev_ioat_def with a custom command
[1599/2399] Generating rte_rawdev_ioat_mingw with a custom command
[1600/2399] Compiling C object drivers/libtmp_rte_pmd_virtio.a.p/net_virtio_virtio_user_vhost_kernel.c.o
[1601/2399] Compiling C object drivers/libtmp_rte_pmd_qede.a.p/net_qede_qede_ethdev.c.o
[1602/2399] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_hw.c.o
[1603/2399] Compiling C object drivers/librte_pmd_ring.a.p/meson-generated_.._rte_pmd_ring.pmd.c.o
[1604/2399] Linking static target drivers/librte_pmd_ring.a
[1605/2399] Compiling C object drivers/libtmp_rte_pmd_vdev_netvsc.a.p/net_vdev_netvsc_vdev_netvsc.c.o
[1606/2399] Compiling C object drivers/librte_pmd_ring.so.21.0.p/meson-generated_.._rte_pmd_ring.pmd.c.o
[1607/2399] Linking static target drivers/libtmp_rte_pmd_vdev_netvsc.a
[1608/2399] Generating rte_rawdev_ntb_def with a custom command
[1609/2399] Generating rte_rawdev_ntb_mingw with a custom command
[1610/2399] Generating rte_pmd_vdev_netvsc.pmd.c with a custom command
[1611/2399] Compiling C object drivers/net/thunderx/base/libnicvf_base.a.p/nicvf_mbox.c.o
[1612/2399] Linking static target drivers/net/thunderx/base/libnicvf_base.a
[1613/2399] Compiling C object drivers/librte_pmd_vdev_netvsc.a.p/meson-generated_.._rte_pmd_vdev_netvsc.pmd.c.o
[1614/2399] Compiling C object drivers/libtmp_rte_pmd_virtio.a.p/net_virtio_virtio_pci.c.o
[1615/2399] Linking static target drivers/librte_pmd_vdev_netvsc.a
[1616/2399] Compiling C object drivers/librte_pmd_vdev_netvsc.so.21.0.p/meson-generated_.._rte_pmd_vdev_netvsc.pmd.c.o
[1617/2399] Generating rte_rawdev_octeontx2_dma_def with a custom command
[1618/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_debug.c.o
[1619/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_api.c.o
[1620/2399] Compiling C object drivers/libtmp_rte_pmd_virtio.a.p/net_virtio_virtio_user_ethdev.c.o
[1621/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_port.c.o
[1622/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_ifpga_hw_api.c.o
[1623/2399] Generating rte_rawdev_octeontx2_dma_mingw with a custom command
[1624/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2.a.p/net_dpaa2_dpaa2_flow.c.o
[1625/2399] Linking static target drivers/libtmp_rte_pmd_dpaa2.a
[1626/2399] Generating rte_rawdev_octeontx2_ep_def with a custom command
[1627/2399] Generating rte_rawdev_octeontx2_ep_mingw with a custom command
[1628/2399] Compiling C object drivers/libtmp_rte_pmd_virtio.a.p/net_virtio_virtio_user_virtio_user_dev.c.o
[1629/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_port_error.c.o
[1630/2399] Compiling C object drivers/libtmp_rte_pmd_virtio.a.p/net_virtio_virtqueue.c.o
[1631/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_error.c.o
[1632/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_dperf.c.o
[1633/2399] Generating rte_rawdev_skeleton_mingw with a custom command
[1634/2399] Generating rte_pmd_dpaa2.pmd.c with a custom command
[1635/2399] Generating rte_rawdev_skeleton_def with a custom command
[1636/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_enumerate.c.o
[1637/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_iperf.c.o
[1638/2399] Compiling C object drivers/librte_pmd_dpaa2.a.p/meson-generated_.._rte_pmd_dpaa2.pmd.c.o
[1639/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme_pr.c.o
[1640/2399] Compiling C object drivers/librte_pmd_dpaa2.so.21.0.p/meson-generated_.._rte_pmd_dpaa2.pmd.c.o
[1641/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_at24_eeprom.c.o
[1642/2399] Linking static target drivers/librte_pmd_dpaa2.a
[1643/2399] Generating rte_pmd_caam_jr_def with a custom command
[1644/2399] Generating rte_pmd_caam_jr_mingw with a custom command
[1645/2399] Generating rte_pmd_dpaa_sec_def with a custom command
[1646/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_rte_eth_softnic_flow.c.o
[1647/2399] Generating rte_pmd_dpaa2_sec_mingw with a custom command
[1648/2399] Compiling C object drivers/libtmp_rte_pmd_pcap.a.p/net_pcap_rte_eth_pcap.c.o
[1649/2399] Generating rte_pmd_dpaa_sec_mingw with a custom command
[1650/2399] Generating rte_pmd_dpaa2_sec_def with a custom command
[1651/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_hw_api.c.o
[1652/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_spi.c.o
[1653/2399] Linking static target drivers/libtmp_rte_pmd_pcap.a
[1654/2399] Compiling C object drivers/libtmp_rte_pmd_tap.a.p/net_tap_tap_flow.c.o
[1655/2399] Compiling C object drivers/libtmp_rte_pmd_ixgbe.a.p/net_ixgbe_ixgbe_ethdev.c.o
[1656/2399] Generating rte_pmd_pcap.pmd.c with a custom command
[1657/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_feature_dev.c.o
[1658/2399] Compiling C object drivers/libtmp_rte_rawdev_ntb.a.p/raw_ntb_ntb_hw_intel.c.o
[1659/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_spi_transaction.c.o
[1660/2399] Compiling C object drivers/librte_pmd_pcap.a.p/meson-generated_.._rte_pmd_pcap.pmd.c.o
[1661/2399] Linking static target drivers/librte_pmd_pcap.a
[1662/2399] Generating rte_pmd_nitrox_mingw with a custom command
[1663/2399] Compiling C object drivers/librte_pmd_pcap.so.21.0.p/meson-generated_.._rte_pmd_pcap.pmd.c.o
[1664/2399] Compiling C object drivers/libtmp_rte_pmd_nitrox.a.p/crypto_nitrox_nitrox_logs.c.o
[1665/2399] Generating rte_pmd_nitrox_def with a custom command
[1666/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/ifpga_fme.c.o
[1667/2399] Generating rte_pmd_null_crypto_mingw with a custom command
[1668/2399] Generating rte_pmd_null_crypto_def with a custom command
[1669/2399] Compiling C object drivers/libtmp_rte_rawdev_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_vf.c.o
[1670/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_intel_max10.c.o
[1671/2399] Generating rte_rawdev_dpaa2_cmdif.sym_chk with a meson_exe.py custom command
[1672/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_eth_group.c.o
[1673/2399] Generating rte_pmd_ice.sym_chk with a meson_exe.py custom command
[1674/2399] Generating rte_pmd_octeontx_crypto_def with a custom command
[1675/2399] Compiling C object drivers/libtmp_rte_rawdev_ioat.a.p/raw_ioat_ioat_rawdev.c.o
[1676/2399] Generating rte_pmd_octeontx_crypto_mingw with a custom command
[1677/2399] Compiling C object drivers/libtmp_rte_rawdev_ioat.a.p/raw_ioat_idxd_vdev.c.o
[1678/2399] Compiling C object drivers/libtmp_rte_rawdev_ioat.a.p/raw_ioat_ioat_common.c.o
[1679/2399] Compiling C object drivers/libtmp_rte_pmd_nitrox.a.p/crypto_nitrox_nitrox_hal.c.o
[1680/2399] Linking target drivers/librte_pmd_ice.so.21.0
[1681/2399] Generating rte_pmd_octeontx2_crypto_def with a custom command
[1682/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_rte_eth_softnic_thread.c.o
[1683/2399] Linking target drivers/librte_rawdev_dpaa2_cmdif.so.21.0
[1684/2399] Compiling C object drivers/libtmp_rte_rawdev_ioat.a.p/raw_ioat_idxd_pci.c.o
[1685/2399] Compiling C object drivers/libtmp_rte_pmd_vhost.a.p/net_vhost_rte_eth_vhost.c.o
[1686/2399] Generating rte_pmd_octeontx2_crypto_mingw with a custom command
[1687/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2_sec.a.p/crypto_dpaa2_sec_mc_dpseci.c.o
[1688/2399] Compiling C object drivers/raw/ifpga/base/libifpga_rawdev_base.a.p/opae_i2c.c.o
[1689/2399] Linking static target drivers/libtmp_rte_pmd_vhost.a
[1690/2399] Generating rte_pmd_ring.sym_chk with a meson_exe.py custom command
[1691/2399] Generating rte_pmd_vhost.pmd.c with a custom command
[1692/2399] Linking static target drivers/raw/ifpga/base/libifpga_rawdev_base.a
[1693/2399] Compiling C object drivers/libtmp_rte_pmd_thunderx.a.p/net_thunderx_nicvf_rxtx.c.o
[1694/2399] Generating rte_pmd_vdev_netvsc.sym_chk with a meson_exe.py custom command
[1695/2399] Compiling C object drivers/librte_pmd_vhost.a.p/meson-generated_.._rte_pmd_vhost.pmd.c.o
[1696/2399] Compiling C object drivers/libtmp_rte_rawdev_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_test.c.o
[1697/2399] Compiling C object drivers/librte_pmd_vhost.so.21.0.p/meson-generated_.._rte_pmd_vhost.pmd.c.o
[1698/2399] Linking static target drivers/librte_pmd_vhost.a
[1699/2399] Linking target drivers/librte_pmd_ring.so.21.0
[1700/2399] Compiling C object drivers/libtmp_rte_rawdev_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_rawdev.c.o
[1701/2399] Compiling C object drivers/libtmp_rte_pmd_caam_jr.a.p/crypto_caam_jr_caam_jr_capabilities.c.o
[1702/2399] Generating rte_pmd_crypto_scheduler_def with a custom command
[1703/2399] Generating rte_pmd_crypto_scheduler_mingw with a custom command
[1704/2399] Linking target drivers/librte_pmd_vdev_netvsc.so.21.0
[1705/2399] Compiling C object drivers/libtmp_rte_pmd_vmxnet3.a.p/net_vmxnet3_vmxnet3_ethdev.c.o
[1706/2399] Compiling C object drivers/libtmp_rte_rawdev_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_msg.c.o
[1707/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_rte_eth_softnic_tm.c.o
[1708/2399] Compiling C object drivers/libtmp_rte_rawdev_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_test.c.o
[1709/2399] Generating rte_pmd_virtio_crypto_def with a custom command
[1710/2399] Generating rte_pmd_virtio_crypto_mingw with a custom command
[1711/2399] Linking static target drivers/librte_pmd_zlib.a
[1712/2399] Generating rte_pmd_dpaa2.sym_chk with a meson_exe.py custom command
[1713/2399] Generating rte_pmd_octeontx_compress_def with a custom command
[1714/2399] Generating rte_pmd_qat_def with a custom command
[1715/2399] Generating rte_pmd_octeontx_compress_mingw with a custom command
[1716/2399] Generating rte_pmd_zlib_mingw with a custom command
[1717/2399] Compiling C object drivers/libtmp_rte_pmd_nitrox.a.p/crypto_nitrox_nitrox_qp.c.o
[1718/2399] Compiling C object drivers/librte_pmd_zlib.so.21.0.p/meson-generated_.._rte_pmd_zlib.pmd.c.o
[1719/2399] Compiling C object drivers/net/virtio/libvirtio_avx512_lib.a.p/virtio_rxtx_packed_avx.c.o
[1720/2399] Linking target drivers/librte_pmd_dpaa2.so.21.0
[1721/2399] Linking static target drivers/net/virtio/libvirtio_avx512_lib.a
[1722/2399] Compiling C object drivers/libtmp_rte_pmd_sfc.a.p/net_sfc_sfc_ef10_tx.c.o
[1723/2399] Linking static target drivers/libtmp_rte_pmd_sfc.a
[1724/2399] Compiling C object drivers/libtmp_rte_pmd_nitrox.a.p/crypto_nitrox_nitrox_sym_capabilities.c.o
[1725/2399] Compiling C object drivers/libtmp_rte_pmd_nitrox.a.p/crypto_nitrox_nitrox_device.c.o
[1726/2399] Linking target drivers/librte_pmd_qat.so.21.0
[1727/2399] Generating rte_pmd_octeontx2_regex_def with a custom command
[1728/2399] Compiling C object drivers/libtmp_rte_rawdev_skeleton.a.p/raw_skeleton_skeleton_rawdev_test.c.o
[1729/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_crypto.a.p/crypto_octeontx_otx_cryptodev.c.o
[1730/2399] Compiling C object drivers/libtmp_rte_pmd_i40e.a.p/net_i40e_i40e_ethdev.c.o
[1731/2399] Generating rte_pmd_octeontx2_regex_mingw with a custom command
[1732/2399] Linking static target drivers/libtmp_rte_pmd_i40e.a
[1733/2399] Compiling C object drivers/libtmp_rte_rawdev_skeleton.a.p/raw_skeleton_skeleton_rawdev.c.o
[1734/2399] Generating rte_pmd_pcap.sym_chk with a meson_exe.py custom command
[1735/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_crypto.a.p/crypto_octeontx_otx_cryptodev_capabilities.c.o
[1736/2399] Generating rte_pmd_ifc_def with a custom command
[1737/2399] Linking static target drivers/libtmp_rte_rawdev_skeleton.a
[1738/2399] Generating rte_pmd_dpaa_event_def with a custom command
[1739/2399] Generating rte_pmd_sfc.pmd.c with a custom command
[1740/2399] Generating rte_pmd_ifc_mingw with a custom command
[1741/2399] Generating rte_rawdev_skeleton.pmd.c with a custom command
[1742/2399] Compiling C object drivers/libtmp_rte_pmd_caam_jr.a.p/crypto_caam_jr_caam_jr_hw.c.o
[1743/2399] Compiling C object drivers/librte_pmd_sfc.a.p/meson-generated_.._rte_pmd_sfc.pmd.c.o
[1744/2399] Compiling C object drivers/libtmp_rte_pmd_caam_jr.a.p/crypto_caam_jr_caam_jr_uio.c.o
[1745/2399] Generating rte_pmd_i40e.pmd.c with a custom command
[1746/2399] Generating rte_pmd_dpaa_event_mingw with a custom command
[1747/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_crypto.a.p/crypto_octeontx_otx_cryptodev_mbox.c.o
[1748/2399] Compiling C object drivers/librte_pmd_sfc.so.21.0.p/meson-generated_.._rte_pmd_sfc.pmd.c.o
[1749/2399] Compiling C object drivers/librte_rawdev_skeleton.a.p/meson-generated_.._rte_rawdev_skeleton.pmd.c.o
[1750/2399] Linking static target drivers/librte_pmd_sfc.a
[1751/2399] Compiling C object drivers/librte_rawdev_skeleton.so.21.0.p/meson-generated_.._rte_rawdev_skeleton.pmd.c.o
[1752/2399] Linking static target drivers/librte_rawdev_skeleton.a
[1753/2399] Compiling C object drivers/libtmp_rte_pmd_null_crypto.a.p/crypto_null_null_crypto_pmd_ops.c.o
[1754/2399] Linking target drivers/librte_pmd_pcap.so.21.0
[1755/2399] Compiling C object drivers/librte_pmd_i40e.a.p/meson-generated_.._rte_pmd_i40e.pmd.c.o
[1756/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_mcp.c.o
[1757/2399] Compiling C object drivers/librte_pmd_i40e.so.21.0.p/meson-generated_.._rte_pmd_i40e.pmd.c.o
[1758/2399] Generating rte_pmd_dpaa2_event_def with a custom command
[1759/2399] Compiling C object drivers/libtmp_rte_rawdev_ioat.a.p/raw_ioat_ioat_rawdev_test.c.o
[1760/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_crypto.a.p/crypto_octeontx_otx_cryptodev_hw_access.c.o
[1761/2399] Generating rte_pmd_dpaa2_event_mingw with a custom command
[1762/2399] Linking static target drivers/librte_pmd_i40e.a
[1763/2399] Linking static target drivers/libtmp_rte_rawdev_ioat.a
[1764/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_crypto.a.p/crypto_octeontx2_otx2_cryptodev.c.o
[1765/2399] Compiling C object drivers/libtmp_rte_rawdev_ifpga.a.p/raw_ifpga_ifpga_rawdev.c.o
[1766/2399] Compiling C object drivers/libtmp_rte_rawdev_octeontx2_dma.a.p/raw_octeontx2_dma_otx2_dpi_rawdev.c.o
[1767/2399] Linking static target drivers/libtmp_rte_rawdev_ifpga.a
[1768/2399] Compiling C object drivers/libtmp_rte_pmd_qede.a.p/net_qede_qede_rxtx.c.o
[1769/2399] Linking static target drivers/libtmp_rte_rawdev_octeontx2_dma.a
[1770/2399] Generating rte_rawdev_ifpga.pmd.c with a custom command
[1771/2399] Compiling C object drivers/libtmp_rte_rawdev_octeontx2_ep.a.p/raw_octeontx2_ep_otx2_ep_enqdeq.c.o
[1772/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_crypto.a.p/crypto_octeontx2_otx2_cryptodev_capabilities.c.o
[1773/2399] Generating rte_rawdev_ioat.pmd.c with a custom command
[1774/2399] Generating rte_rawdev_octeontx2_dma.pmd.c with a custom command
[1775/2399] Generating rte_pmd_octeontx2_event_mingw with a custom command
[1776/2399] Linking static target drivers/libtmp_rte_rawdev_octeontx2_ep.a
[1777/2399] Compiling C object drivers/libtmp_rte_pmd_nitrox.a.p/crypto_nitrox_nitrox_sym_reqmgr.c.o
[1778/2399] Compiling C object drivers/librte_rawdev_ifpga.a.p/meson-generated_.._rte_rawdev_ifpga.pmd.c.o
[1779/2399] Compiling C object drivers/librte_rawdev_ioat.a.p/meson-generated_.._rte_rawdev_ioat.pmd.c.o
[1780/2399] Compiling C object drivers/librte_rawdev_ioat.so.21.0.p/meson-generated_.._rte_rawdev_ioat.pmd.c.o
[1781/2399] Compiling C object drivers/librte_rawdev_octeontx2_dma.a.p/meson-generated_.._rte_rawdev_octeontx2_dma.pmd.c.o
[1782/2399] Compiling C object drivers/librte_rawdev_ifpga.so.21.0.p/meson-generated_.._rte_rawdev_ifpga.pmd.c.o
[1783/2399] Compiling C object drivers/libtmp_rte_pmd_ifc.a.p/vdpa_ifc_base_ifcvf.c.o
[1784/2399] Generating rte_rawdev_octeontx2_ep.pmd.c with a custom command
[1785/2399] Linking static target drivers/librte_rawdev_ifpga.a
[1786/2399] Generating rte_pmd_octeontx2_event_def with a custom command
[1787/2399] Linking static target drivers/librte_rawdev_ioat.a
[1788/2399] Linking static target drivers/librte_rawdev_octeontx2_dma.a
[1789/2399] Compiling C object drivers/libtmp_rte_pmd_virtio.a.p/net_virtio_virtio_ethdev.c.o
[1790/2399] Compiling C object drivers/librte_rawdev_octeontx2_dma.so.21.0.p/meson-generated_.._rte_rawdev_octeontx2_dma.pmd.c.o
[1791/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_crypto.a.p/crypto_octeontx2_otx2_cryptodev_hw_access.c.o
[1792/2399] Compiling C object drivers/librte_rawdev_octeontx2_ep.a.p/meson-generated_.._rte_rawdev_octeontx2_ep.pmd.c.o
[1793/2399] Compiling C object drivers/librte_rawdev_octeontx2_ep.so.21.0.p/meson-generated_.._rte_rawdev_octeontx2_ep.pmd.c.o
[1794/2399] Linking static target drivers/librte_rawdev_octeontx2_ep.a
[1795/2399] Compiling C object drivers/libtmp_rte_pmd_nitrox.a.p/crypto_nitrox_nitrox_sym.c.o
[1796/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_sriov.c.o
[1797/2399] Linking static target drivers/libtmp_rte_pmd_nitrox.a
[1798/2399] Generating rte_pmd_opdl_event_mingw with a custom command
[1799/2399] Compiling C object drivers/libtmp_rte_pmd_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd_ops.c.o
[1800/2399] Generating rte_pmd_opdl_event_def with a custom command
[1801/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_crypto.a.p/crypto_octeontx2_otx2_cryptodev_mbox.c.o
[1802/2399] Generating rte_pmd_nitrox.pmd.c with a custom command
[1803/2399] Generating rte_pmd_vhost.sym_chk with a meson_exe.py custom command
[1804/2399] Generating rte_pmd_skeleton_event_def with a custom command
[1805/2399] Compiling C object drivers/librte_pmd_nitrox.a.p/meson-generated_.._rte_pmd_nitrox.pmd.c.o
[1806/2399] Compiling C object drivers/libtmp_rte_pmd_thunderx.a.p/net_thunderx_nicvf_ethdev.c.o
[1807/2399] Generating rte_pmd_skeleton_event_mingw with a custom command
[1808/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_compress.a.p/compress_octeontx_otx_zip.c.o
[1809/2399] Linking static target drivers/libtmp_rte_pmd_thunderx.a
[1810/2399] Linking static target drivers/librte_pmd_nitrox.a
[1811/2399] Compiling C object drivers/libtmp_rte_pmd_crypto_scheduler.a.p/crypto_scheduler_scheduler_pmd.c.o
[1812/2399] Compiling C object drivers/librte_pmd_nitrox.so.21.0.p/meson-generated_.._rte_pmd_nitrox.pmd.c.o
[1813/2399] Generating rte_pmd_thunderx.pmd.c with a custom command
[1814/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_regex.a.p/regex_octeontx2_otx2_regexdev_compiler.c.o
[1815/2399] Generating rte_pmd_sw_event_mingw with a custom command
[1816/2399] Generating rte_pmd_zlib.sym_chk with a meson_exe.py custom command
[1817/2399] Compiling C object drivers/librte_pmd_thunderx.a.p/meson-generated_.._rte_pmd_thunderx.pmd.c.o
[1818/2399] Compiling C object drivers/librte_pmd_thunderx.so.21.0.p/meson-generated_.._rte_pmd_thunderx.pmd.c.o
[1819/2399] Generating rte_pmd_sw_event_def with a custom command
[1820/2399] Linking static target drivers/librte_pmd_thunderx.a
[1821/2399] Compiling C object drivers/libtmp_rte_pmd_ixgbe.a.p/net_ixgbe_ixgbe_rxtx.c.o
[1822/2399] Linking static target drivers/libtmp_rte_pmd_ixgbe.a
[1823/2399] Generating rte_pmd_dsw_event_def with a custom command
[1824/2399] Linking target drivers/librte_pmd_zlib.so.21.0
[1825/2399] Generating rte_pmd_ixgbe.pmd.c with a custom command
[1826/2399] Compiling C object drivers/libtmp_rte_pmd_opdl_event.a.p/event_opdl_opdl_evdev_xstats.c.o
[1827/2399] Generating symbol file drivers/librte_pmd_dpaa2.so.21.0.p/librte_pmd_dpaa2.so.21.0.symbols
[1828/2399] Compiling C object drivers/librte_pmd_ixgbe.a.p/meson-generated_.._rte_pmd_ixgbe.pmd.c.o
[1829/2399] Compiling C object drivers/libtmp_rte_pmd_virtio_crypto.a.p/crypto_virtio_virtio_pci.c.o
[1830/2399] Compiling C object drivers/librte_pmd_ixgbe.so.21.0.p/meson-generated_.._rte_pmd_ixgbe.pmd.c.o
[1831/2399] Generating rte_pmd_dsw_event_mingw with a custom command
[1832/2399] Linking static target drivers/librte_pmd_ixgbe.a
[1833/2399] Compiling C object drivers/libtmp_rte_pmd_skeleton_event.a.p/event_skeleton_skeleton_eventdev.c.o
[1834/2399] Generating rte_pmd_octeontx_event_mingw with a custom command
[1835/2399] Linking static target drivers/libtmp_rte_pmd_skeleton_event.a
[1836/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_regex.a.p/regex_octeontx2_otx2_regexdev_mbox.c.o
[1837/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_regex.a.p/regex_octeontx2_otx2_regexdev_hw_access.c.o
[1838/2399] Generating rte_pmd_skeleton_event.pmd.c with a custom command
[1839/2399] Compiling C object drivers/librte_pmd_skeleton_event.a.p/meson-generated_.._rte_pmd_skeleton_event.pmd.c.o
[1840/2399] Compiling C object drivers/libtmp_rte_pmd_crypto_scheduler.a.p/crypto_scheduler_scheduler_roundrobin.c.o
[1841/2399] Compiling C object drivers/libtmp_rte_pmd_virtio_crypto.a.p/crypto_virtio_virtio_rxtx.c.o
[1842/2399] Linking static target drivers/librte_pmd_skeleton_event.a
[1843/2399] Compiling C object drivers/libtmp_rte_pmd_crypto_scheduler.a.p/crypto_scheduler_scheduler_failover.c.o
[1844/2399] Compiling C object drivers/libtmp_rte_pmd_opdl_event.a.p/event_opdl_opdl_evdev.c.o
[1845/2399] Compiling C object drivers/librte_pmd_skeleton_event.so.21.0.p/meson-generated_.._rte_pmd_skeleton_event.pmd.c.o
[1846/2399] Compiling C object drivers/libtmp_rte_pmd_crypto_scheduler.a.p/crypto_scheduler_rte_cryptodev_scheduler.c.o
[1847/2399] Generating rte_pmd_sfc.sym_chk with a meson_exe.py custom command
[1848/2399] Generating rte_rawdev_skeleton.sym_chk with a meson_exe.py custom command
[1849/2399] Generating rte_pmd_octeontx_event_def with a custom command
[1850/2399] Generating rte_pmd_bbdev_null_def with a custom command
[1851/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_crypto.a.p/crypto_octeontx2_otx2_cryptodev_sec.c.o
[1852/2399] Generating rte_pmd_bbdev_null_mingw with a custom command
[1853/2399] Generating rte_rawdev_ioat.sym_chk with a meson_exe.py custom command
[1854/2399] Compiling C object drivers/libtmp_rte_pmd_dsw_event.a.p/event_dsw_dsw_xstats.c.o
[1855/2399] Generating rte_pmd_bbdev_turbo_sw_mingw with a custom command
[1856/2399] Linking target drivers/librte_rawdev_skeleton.so.21.0
[1857/2399] Generating rte_pmd_bbdev_turbo_sw_def with a custom command
[1858/2399] Compiling C object drivers/libtmp_rte_pmd_opdl_event.a.p/event_opdl_opdl_evdev_init.c.o
[1859/2399] Generating rte_pmd_bbdev_fpga_lte_fec_def with a custom command
[1860/2399] Generating rte_pmd_i40e.sym_chk with a meson_exe.py custom command
[1861/2399] Compiling C object drivers/libtmp_rte_pmd_crypto_scheduler.a.p/crypto_scheduler_scheduler_pkt_size_distr.c.o
[1862/2399] Linking target drivers/librte_rawdev_ioat.so.21.0
[1863/2399] Compiling C object drivers/libtmp_rte_pmd_virtio_crypto.a.p/crypto_virtio_virtio_cryptodev.c.o
[1864/2399] Generating rte_pmd_bbdev_fpga_lte_fec_mingw with a custom command
[1865/2399] Compiling C object drivers/libtmp_rte_pmd_null_crypto.a.p/crypto_null_null_crypto_pmd.c.o
[1866/2399] Generating rte_rawdev_ifpga.sym_chk with a meson_exe.py custom command
[1867/2399] Generating rte_rawdev_octeontx2_dma.sym_chk with a meson_exe.py custom command
[1868/2399] Generating rte_pmd_bbdev_fpga_5gnr_fec_def with a custom command
[1869/2399] Linking static target drivers/libtmp_rte_pmd_virtio_crypto.a
[1870/2399] Generating rte_pmd_bbdev_fpga_5gnr_fec_mingw with a custom command
[1871/2399] Linking static target drivers/libtmp_rte_pmd_null_crypto.a
[1872/2399] Generating rte_pmd_null_crypto.pmd.c with a custom command
[1873/2399] Linking target drivers/librte_pmd_sfc.so.21.0
[1874/2399] Compiling C object drivers/libtmp_rte_pmd_softnic.a.p/net_softnic_rte_eth_softnic_cli.c.o
[1875/2399] Generating rte_pmd_virtio_crypto.pmd.c with a custom command
[1876/2399] Linking static target drivers/libtmp_rte_pmd_softnic.a
[1877/2399] Compiling C object drivers/librte_pmd_null_crypto.a.p/meson-generated_.._rte_pmd_null_crypto.pmd.c.o
[1878/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2_event.a.p/event_dpaa2_dpaa2_hw_dpcon.c.o
[1879/2399] Linking static target drivers/librte_pmd_null_crypto.a
[1880/2399] Compiling C object drivers/librte_pmd_null_crypto.so.21.0.p/meson-generated_.._rte_pmd_null_crypto.pmd.c.o
[1881/2399] Compiling C object drivers/librte_pmd_virtio_crypto.a.p/meson-generated_.._rte_pmd_virtio_crypto.pmd.c.o
[1882/2399] Generating rte_rawdev_octeontx2_ep.sym_chk with a meson_exe.py custom command
[1883/2399] Compiling C object drivers/libtmp_rte_rawdev_dpaa2_qdma.a.p/raw_dpaa2_qdma_dpaa2_qdma.c.o
[1884/2399] Linking static target drivers/librte_pmd_virtio_crypto.a
[1885/2399] Generating rte_pmd_nitrox.sym_chk with a meson_exe.py custom command
[1886/2399] Linking static target drivers/libtmp_rte_rawdev_dpaa2_qdma.a
[1887/2399] Compiling C object drivers/librte_pmd_virtio_crypto.so.21.0.p/meson-generated_.._rte_pmd_virtio_crypto.pmd.c.o
[1888/2399] Generating rte_rawdev_dpaa2_qdma.pmd.c with a custom command
[1889/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_regex.a.p/regex_octeontx2_otx2_regexdev.c.o
[1890/2399] Generating rte_pmd_softnic.pmd.c with a custom command
[1891/2399] Compiling C object drivers/libtmp_rte_pmd_sw_event.a.p/event_sw_sw_evdev_xstats.c.o
[1892/2399] Compiling C object drivers/librte_rawdev_dpaa2_qdma.a.p/meson-generated_.._rte_rawdev_dpaa2_qdma.pmd.c.o
[1893/2399] Compiling C object drivers/librte_rawdev_dpaa2_qdma.so.21.0.p/meson-generated_.._rte_rawdev_dpaa2_qdma.pmd.c.o
[1894/2399] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_commands.c.o
[1895/2399] Linking target drivers/librte_rawdev_octeontx2_dma.so.21.0
[1896/2399] Linking static target drivers/librte_rawdev_dpaa2_qdma.a
[1897/2399] Linking static target drivers/libtmp_rte_pmd_octeontx2_regex.a
[1898/2399] Linking target drivers/librte_pmd_i40e.so.21.0
[1899/2399] Compiling C object drivers/librte_pmd_softnic.so.21.0.p/meson-generated_.._rte_pmd_softnic.pmd.c.o
[1900/2399] Compiling C object drivers/librte_pmd_softnic.a.p/meson-generated_.._rte_pmd_softnic.pmd.c.o
[1901/2399] Generating rte_pmd_octeontx2_regex.pmd.c with a custom command
[1902/2399] Linking static target drivers/librte_pmd_softnic.a
[1903/2399] Compiling C object drivers/librte_pmd_octeontx2_regex.a.p/meson-generated_.._rte_pmd_octeontx2_regex.pmd.c.o
[1904/2399] Linking static target drivers/librte_pmd_octeontx2_regex.a
[1905/2399] Linking target drivers/librte_pmd_nitrox.so.21.0
[1906/2399] Compiling C object drivers/net/qede/base/libqede_base.a.p/ecore_dev.c.o
[1907/2399] Linking target drivers/librte_rawdev_octeontx2_ep.so.21.0
[1908/2399] Linking static target drivers/net/qede/base/libqede_base.a
[1909/2399] Compiling C object drivers/libtmp_rte_pmd_dsw_event.a.p/event_dsw_dsw_evdev.c.o
[1910/2399] Compiling C object drivers/librte_pmd_octeontx2_regex.so.21.0.p/meson-generated_.._rte_pmd_octeontx2_regex.pmd.c.o
[1911/2399] Generating rte_pmd_thunderx.sym_chk with a meson_exe.py custom command
[1912/2399] Compiling C object drivers/libtmp_rte_pmd_tap.a.p/net_tap_rte_eth_tap.c.o
[1913/2399] Linking static target drivers/libtmp_rte_pmd_tap.a
[1914/2399] Compiling C object drivers/libtmp_rte_rawdev_ntb.a.p/raw_ntb_ntb.c.o
[1915/2399] Generating rte_pmd_tap.pmd.c with a custom command
[1916/2399] Linking static target drivers/libtmp_rte_rawdev_ntb.a
[1917/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_event.a.p/event_octeontx2_otx2_evdev_irq.c.o
[1918/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2_event.a.p/event_dpaa2_dpaa2_eventdev.c.o
[1919/2399] Generating rte_rawdev_ntb.pmd.c with a custom command
[1920/2399] Compiling C object drivers/librte_pmd_tap.a.p/meson-generated_.._rte_pmd_tap.pmd.c.o
[1921/2399] Compiling C object app/dpdk-test-cmdline.p/test-cmdline_cmdline_test.c.o
[1922/2399] Compiling C object drivers/librte_pmd_tap.so.21.0.p/meson-generated_.._rte_pmd_tap.pmd.c.o
[1923/2399] Compiling C object drivers/libtmp_rte_pmd_sw_event.a.p/event_sw_sw_evdev.c.o
[1924/2399] Linking static target drivers/librte_pmd_tap.a
[1925/2399] Compiling C object drivers/librte_rawdev_ntb.a.p/meson-generated_.._rte_rawdev_ntb.pmd.c.o
[1926/2399] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_main.c.o
[1927/2399] Linking static target drivers/librte_rawdev_ntb.a
[1928/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa_event.a.p/event_dpaa_dpaa_eventdev.c.o
[1929/2399] Compiling C object drivers/librte_rawdev_ntb.so.21.0.p/meson-generated_.._rte_rawdev_ntb.pmd.c.o
[1930/2399] Linking target drivers/librte_pmd_thunderx.so.21.0
[1931/2399] Linking static target drivers/libtmp_rte_pmd_dpaa_event.a
[1932/2399] Compiling C object drivers/libtmp_rte_pmd_ifc.a.p/vdpa_ifc_ifcvf_vdpa.c.o
[1933/2399] Compiling C object drivers/libtmp_rte_pmd_vmxnet3.a.p/net_vmxnet3_vmxnet3_rxtx.c.o
[1934/2399] Generating rte_pmd_dpaa_event.pmd.c with a custom command
[1935/2399] Linking static target drivers/libtmp_rte_pmd_ifc.a
[1936/2399] Linking static target drivers/libtmp_rte_pmd_vmxnet3.a
[1937/2399] Generating rte_pmd_skeleton_event.sym_chk with a meson_exe.py custom command
[1938/2399] Generating rte_pmd_ixgbe.sym_chk with a meson_exe.py custom command
[1939/2399] Generating rte_pmd_ifc.pmd.c with a custom command
[1940/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_event.a.p/event_octeontx2_otx2_evdev_adptr.c.o
[1941/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_event.a.p/event_octeontx_ssovf_probe.c.o
[1942/2399] Generating rte_pmd_vmxnet3.pmd.c with a custom command
[1943/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2_event.a.p/event_dpaa2_dpaa2_eventdev_selftest.c.o
[1944/2399] Compiling C object drivers/librte_pmd_dpaa_event.a.p/meson-generated_.._rte_pmd_dpaa_event.pmd.c.o
[1945/2399] Compiling C object drivers/librte_pmd_dpaa_event.so.21.0.p/meson-generated_.._rte_pmd_dpaa_event.pmd.c.o
[1946/2399] Linking static target drivers/librte_pmd_dpaa_event.a
[1947/2399] Compiling C object drivers/librte_pmd_ifc.so.21.0.p/meson-generated_.._rte_pmd_ifc.pmd.c.o
[1948/2399] Compiling C object drivers/librte_pmd_ifc.a.p/meson-generated_.._rte_pmd_ifc.pmd.c.o
[1949/2399] Linking static target drivers/libtmp_rte_pmd_dpaa2_event.a
[1950/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_event.a.p/event_octeontx_timvf_probe.c.o
[1951/2399] Compiling C object drivers/librte_pmd_vmxnet3.so.21.0.p/meson-generated_.._rte_pmd_vmxnet3.pmd.c.o
[1952/2399] Compiling C object drivers/librte_pmd_vmxnet3.a.p/meson-generated_.._rte_pmd_vmxnet3.pmd.c.o
[1953/2399] Linking static target drivers/librte_pmd_ifc.a
[1954/2399] Linking static target drivers/librte_pmd_vmxnet3.a
[1955/2399] Generating rte_pmd_dpaa2_event.pmd.c with a custom command
[1956/2399] Compiling C object drivers/librte_pmd_dpaa2_event.a.p/meson-generated_.._rte_pmd_dpaa2_event.pmd.c.o
[1957/2399] Linking static target drivers/librte_pmd_dpaa2_event.a
[1958/2399] Linking target drivers/librte_pmd_ixgbe.so.21.0
[1959/2399] Compiling C object drivers/libtmp_rte_pmd_sw_event.a.p/event_sw_sw_evdev_worker.c.o
[1960/2399] Generating rte_pmd_null_crypto.sym_chk with a meson_exe.py custom command
[1961/2399] Compiling C object drivers/librte_pmd_dpaa2_event.so.21.0.p/meson-generated_.._rte_pmd_dpaa2_event.pmd.c.o
[1962/2399] Linking target drivers/librte_pmd_skeleton_event.so.21.0
[1963/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_event.a.p/event_octeontx_timvf_evdev.c.o
[1964/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_event.a.p/event_octeontx_ssovf_evdev.c.o
[1965/2399] Generating rte_rawdev_dpaa2_qdma.sym_chk with a meson_exe.py custom command
[1966/2399] Linking target drivers/librte_pmd_null_crypto.so.21.0
[1967/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_event.a.p/event_octeontx_timvf_worker.c.o
[1968/2399] Generating rte_pmd_virtio_crypto.sym_chk with a meson_exe.py custom command
[1969/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_event.a.p/event_octeontx2_otx2_tim_evdev.c.o
[1970/2399] Linking target drivers/librte_rawdev_dpaa2_qdma.so.21.0
[1971/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_compress.a.p/compress_octeontx_otx_zip_pmd.c.o
[1972/2399] Linking static target drivers/libtmp_rte_pmd_octeontx_compress.a
[1973/2399] Generating rte_pmd_octeontx_compress.pmd.c with a custom command
[1974/2399] Generating symbol file drivers/librte_pmd_i40e.so.21.0.p/librte_pmd_i40e.so.21.0.symbols
[1975/2399] Compiling C object drivers/libtmp_rte_pmd_opdl_event.a.p/event_opdl_opdl_test.c.o
[1976/2399] Linking target drivers/librte_pmd_virtio_crypto.so.21.0
[1977/2399] Compiling C object drivers/librte_pmd_octeontx_compress.a.p/meson-generated_.._rte_pmd_octeontx_compress.pmd.c.o
[1978/2399] Generating rte_pmd_softnic.sym_chk with a meson_exe.py custom command
[1979/2399] Compiling C object drivers/librte_pmd_octeontx_compress.so.21.0.p/meson-generated_.._rte_pmd_octeontx_compress.pmd.c.o
[1980/2399] Linking static target drivers/librte_pmd_octeontx_compress.a
[1981/2399] Generating rte_pmd_octeontx2_regex.sym_chk with a meson_exe.py custom command
[1982/2399] Generating rte_rawdev_ntb.sym_chk with a meson_exe.py custom command
[1983/2399] Linking target drivers/librte_rawdev_ifpga.so.21.0
[1984/2399] Linking target drivers/librte_pmd_octeontx2_regex.so.21.0
[1985/2399] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_test.c.o
[1986/2399] Generating rte_pmd_tap.sym_chk with a meson_exe.py custom command
[1987/2399] Generating rte_pmd_ifc.sym_chk with a meson_exe.py custom command
[1988/2399] Linking target drivers/librte_rawdev_ntb.so.21.0
[1989/2399] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_options_parse.c.o
[1990/2399] Compiling C object app/dpdk-test-acl.p/test-acl_main.c.o
[1991/2399] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_main.c.o
[1992/2399] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_throughput.c.o
[1993/2399] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_config.c.o
[1994/2399] Generating rte_pmd_dpaa_event.sym_chk with a meson_exe.py custom command
[1995/2399] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_main.c.o
[1996/2399] Linking target drivers/librte_pmd_tap.so.21.0
[1997/2399] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_init.c.o
[1998/2399] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_parser.c.o
[1999/2399] Generating rte_pmd_vmxnet3.sym_chk with a meson_exe.py custom command
[2000/2399] Generating rte_pmd_dpaa2_event.sym_chk with a meson_exe.py custom command
[2001/2399] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vectors.c.o
[2002/2399] Compiling C object drivers/libtmp_rte_pmd_bbdev_fpga_5gnr_fec.a.p/baseband_fpga_5gnr_fec_rte_fpga_5gnr_fec.c.o
[2003/2399] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_verify.c.o
[2004/2399] Linking static target drivers/libtmp_rte_pmd_bbdev_fpga_5gnr_fec.a
[2005/2399] Generating rte_pmd_bbdev_fpga_5gnr_fec.pmd.c with a custom command
[2006/2399] Compiling C object drivers/librte_pmd_bbdev_fpga_5gnr_fec.a.p/meson-generated_.._rte_pmd_bbdev_fpga_5gnr_fec.pmd.c.o
[2007/2399] Linking static target drivers/librte_pmd_bbdev_fpga_5gnr_fec.a
[2008/2399] Linking target drivers/librte_pmd_vmxnet3.so.21.0
[2009/2399] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_atq.c.o
[2010/2399] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_common.c.o
[2011/2399] Compiling C object drivers/librte_pmd_bbdev_fpga_5gnr_fec.so.21.0.p/meson-generated_.._rte_pmd_bbdev_fpga_5gnr_fec.pmd.c.o
[2012/2399] Compiling C object drivers/libtmp_rte_pmd_virtio.a.p/net_virtio_virtio_rxtx.c.o
[2013/2399] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_hash.c.o
[2014/2399] Linking static target drivers/libtmp_rte_pmd_virtio.a
[2015/2399] Compiling C object app/dpdk-proc-info.p/proc-info_main.c.o
[2016/2399] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_ops.c.o
[2017/2399] Generating rte_pmd_virtio.pmd.c with a custom command
[2018/2399] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev.c.o
[2019/2399] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_options.c.o
[2020/2399] Compiling C object drivers/librte_pmd_virtio.a.p/meson-generated_.._rte_pmd_virtio.pmd.c.o
[2021/2399] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_pmd_cyclecount.c.o
[2022/2399] Compiling C object drivers/librte_pmd_virtio.so.21.0.p/meson-generated_.._rte_pmd_virtio.pmd.c.o
[2023/2399] Linking static target drivers/librte_pmd_virtio.a
[2024/2399] Compiling C object drivers/libtmp_rte_pmd_bbdev_fpga_lte_fec.a.p/baseband_fpga_lte_fec_fpga_lte_fec.c.o
[2025/2399] Generating rte_pmd_octeontx_compress.sym_chk with a meson_exe.py custom command
[2026/2399] Linking static target drivers/libtmp_rte_pmd_bbdev_fpga_lte_fec.a
[2027/2399] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_main.c.o
[2028/2399] Generating rte_pmd_bbdev_fpga_lte_fec.pmd.c with a custom command
[2029/2399] Compiling C object drivers/libtmp_rte_pmd_qede.a.p/net_qede_qede_debug.c.o
[2030/2399] Linking static target drivers/libtmp_rte_pmd_qede.a
[2031/2399] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_common.c.o
[2032/2399] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_evt_main.c.o
[2033/2399] Compiling C object drivers/librte_pmd_bbdev_fpga_lte_fec.a.p/meson-generated_.._rte_pmd_bbdev_fpga_lte_fec.pmd.c.o
[2034/2399] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_vector_parsing.c.o
[2035/2399] Linking static target drivers/librte_pmd_bbdev_fpga_lte_fec.a
[2036/2399] Generating rte_pmd_qede.pmd.c with a custom command
[2037/2399] Compiling C object drivers/librte_pmd_bbdev_fpga_lte_fec.so.21.0.p/meson-generated_.._rte_pmd_bbdev_fpga_lte_fec.pmd.c.o
[2038/2399] Linking target drivers/librte_pmd_octeontx_compress.so.21.0
[2039/2399] Compiling C object drivers/librte_pmd_qede.a.p/meson-generated_.._rte_pmd_qede.pmd.c.o
[2040/2399] Compiling C object app/dpdk-pdump.p/pdump_main.c.o
[2041/2399] Compiling C object drivers/librte_pmd_qede.so.21.0.p/meson-generated_.._rte_pmd_qede.pmd.c.o
[2042/2399] Linking static target drivers/librte_pmd_qede.a
[2043/2399] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_throughput.c.o
[2044/2399] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_test_latency.c.o
[2045/2399] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_flow_gen.c.o
[2046/2399] Compiling C object app/dpdk-test-crypto-perf.p/test-crypto-perf_cperf_options_parsing.c.o
[2047/2399] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_common.c.o
[2048/2399] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_verify.c.o
[2049/2399] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm_ipv6.c.o
[2050/2399] Compiling C object app/dpdk-test-compress-perf.p/test-compress-perf_comp_perf_test_cyclecount.c.o
[2051/2399] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_stub.c.o
[2052/2399] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_acl.c.o
[2053/2399] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_items_gen.c.o
[2054/2399] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_order_queue.c.o
[2055/2399] Generating rte_pmd_bbdev_fpga_5gnr_fec.sym_chk with a meson_exe.py custom command
[2056/2399] Compiling C object app/test/dpdk-test.p/test_bitops.c.o
[2057/2399] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_common.c.o
[2058/2399] Compiling C object app/dpdk-test-fib.p/test-fib_main.c.o
[2059/2399] Compiling C object drivers/libtmp_rte_pmd_sw_event.a.p/event_sw_sw_evdev_scheduler.c.o
[2060/2399] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_actions_gen.c.o
[2061/2399] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_vector.c.o
[2062/2399] Linking target drivers/librte_pmd_bbdev_fpga_5gnr_fec.so.21.0
[2063/2399] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_pipeline_lpm.c.o
[2064/2399] Compiling C object app/test/dpdk-test.p/test_alarm.c.o
[2065/2399] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_queue.c.o
[2066/2399] Compiling C object drivers/libtmp_rte_pmd_bbdev_null.a.p/baseband_null_bbdev_null.c.o
[2067/2399] Generating rte_pmd_virtio.sym_chk with a meson_exe.py custom command
[2068/2399] Generating rte_pmd_qede.sym_chk with a meson_exe.py custom command
[2069/2399] Linking static target drivers/libtmp_rte_pmd_bbdev_null.a
[2070/2399] Generating rte_pmd_bbdev_null.pmd.c with a custom command
[2071/2399] Compiling C object app/test/dpdk-test.p/test_byteorder.c.o
[2072/2399] Compiling C object app/test/dpdk-test.p/test_cmdline.c.o
[2073/2399] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_queue.c.o
[2074/2399] Generating rte_pmd_bbdev_fpga_lte_fec.sym_chk with a meson_exe.py custom command
[2075/2399] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_atq.c.o
[2076/2399] Compiling C object drivers/librte_pmd_bbdev_null.a.p/meson-generated_.._rte_pmd_bbdev_null.pmd.c.o
[2077/2399] Compiling C object drivers/librte_pmd_bbdev_null.so.21.0.p/meson-generated_.._rte_pmd_bbdev_null.pmd.c.o
[2078/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_mtr.c.o
[2079/2399] Linking static target drivers/librte_pmd_bbdev_null.a
[2080/2399] Compiling C object app/test/dpdk-test.p/test_atomic.c.o
[2081/2399] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_pipeline_atq.c.o
[2082/2399] Compiling C object app/test/dpdk-test.p/test.c.o
[2083/2399] Compiling C object app/test/dpdk-test.p/test_cmdline_portlist.c.o
[2084/2399] Linking target drivers/librte_pmd_virtio.so.21.0
[2085/2399] Linking target drivers/librte_pmd_qede.so.21.0
[2086/2399] Compiling C object app/test/dpdk-test.p/test_cmdline_lib.c.o
[2087/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_ieee1588fwd.c.o
[2088/2399] Linking target drivers/librte_pmd_bbdev_fpga_lte_fec.so.21.0
[2089/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_5tswap.c.o
[2090/2399] Compiling C object app/test/dpdk-test.p/test_cmdline_string.c.o
[2091/2399] Compiling C object app/test/dpdk-test.p/test_cpuflags.c.o
[2092/2399] Compiling C object app/test/dpdk-test.p/test_cmdline_num.c.o
[2093/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_event.a.p/event_octeontx2_otx2_evdev_selftest.c.o
[2094/2399] Compiling C object app/test/dpdk-test.p/test_cmdline_ipaddr.c.o
[2095/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_macfwd.c.o
[2096/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_event.a.p/event_octeontx2_otx2_tim_worker.c.o
[2097/2399] Compiling C object app/test/dpdk-test.p/test_cycles.c.o
[2098/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_bpf_cmd.c.o
[2099/2399] Compiling C object app/dpdk-test-eventdev.p/test-eventdev_test_perf_common.c.o
[2100/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_iofwd.c.o
[2101/2399] Compiling C object app/test/dpdk-test.p/test_cmdline_cirbuf.c.o
[2102/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_macswap.c.o
[2103/2399] Compiling C object app/dpdk-test-flow-perf.p/test-flow-perf_main.c.o
[2104/2399] Compiling C object app/test/dpdk-test.p/test_debug.c.o
[2105/2399] Compiling C object app/dpdk-test-pipeline.p/test-pipeline_runtime.c.o
[2106/2399] Compiling C object drivers/libtmp_rte_pmd_crypto_scheduler.a.p/crypto_scheduler_scheduler_multicore.c.o
[2107/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_flowgen.c.o
[2108/2399] Compiling C object app/test/dpdk-test.p/test_eal_fs.c.o
[2109/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_event.a.p/event_octeontx_ssovf_evdev_selftest.c.o
[2110/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_rxonly.c.o
[2111/2399] Linking static target drivers/libtmp_rte_pmd_crypto_scheduler.a
[2112/2399] Compiling C object app/test/dpdk-test.p/test_errno.c.o
[2113/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_icmpecho.c.o
[2114/2399] Compiling C object app/test/dpdk-test.p/test_common.c.o
[2115/2399] Generating rte_pmd_crypto_scheduler.pmd.c with a custom command
[2116/2399] Compiling C object drivers/libtmp_rte_pmd_bbdev_turbo_sw.a.p/baseband_turbo_sw_bbdev_turbo_software.c.o
[2117/2399] Compiling C object app/test/dpdk-test.p/test_barrier.c.o
[2118/2399] Linking static target drivers/libtmp_rte_pmd_bbdev_turbo_sw.a
[2119/2399] Generating rte_pmd_bbdev_turbo_sw.pmd.c with a custom command
[2120/2399] Compiling C object drivers/librte_pmd_crypto_scheduler.so.21.0.p/meson-generated_.._rte_pmd_crypto_scheduler.pmd.c.o
[2121/2399] Compiling C object drivers/librte_pmd_crypto_scheduler.a.p/meson-generated_.._rte_pmd_crypto_scheduler.pmd.c.o
[2122/2399] Linking static target drivers/librte_pmd_crypto_scheduler.a
[2123/2399] Compiling C object app/test/dpdk-test.p/commands.c.o
[2124/2399] Compiling C object drivers/librte_pmd_bbdev_turbo_sw.a.p/meson-generated_.._rte_pmd_bbdev_turbo_sw.pmd.c.o
[2125/2399] Compiling C object drivers/librte_pmd_bbdev_turbo_sw.so.21.0.p/meson-generated_.._rte_pmd_bbdev_turbo_sw.pmd.c.o
[2126/2399] Compiling C object app/dpdk-test-sad.p/test-sad_main.c.o
[2127/2399] Linking static target drivers/librte_pmd_bbdev_turbo_sw.a
[2128/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_event.a.p/event_octeontx_ssovf_worker.c.o
[2129/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_util.c.o
[2130/2399] Linking static target drivers/libtmp_rte_pmd_octeontx_event.a
[2131/2399] Generating rte_pmd_octeontx_event.pmd.c with a custom command
[2132/2399] Compiling C object drivers/librte_pmd_octeontx_event.so.21.0.p/meson-generated_.._rte_pmd_octeontx_event.pmd.c.o
[2133/2399] Compiling C object app/test/dpdk-test.p/test_cmdline_etheraddr.c.o
[2134/2399] Compiling C object drivers/librte_pmd_octeontx_event.a.p/meson-generated_.._rte_pmd_octeontx_event.pmd.c.o
[2135/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_tm.c.o
[2136/2399] Linking static target drivers/librte_pmd_octeontx_event.a
[2137/2399] Compiling C object app/test/dpdk-test.p/test_crc.c.o
[2138/2399] Generating rte_pmd_bbdev_null.sym_chk with a meson_exe.py custom command
[2139/2399] Compiling C object drivers/libtmp_rte_pmd_caam_jr.a.p/crypto_caam_jr_caam_jr.c.o
[2140/2399] Linking static target drivers/libtmp_rte_pmd_caam_jr.a
[2141/2399] Compiling C object app/dpdk-test-regex.p/test-regex_main.c.o
[2142/2399] Compiling C object app/test/dpdk-test.p/test_fib6_perf.c.o
[2143/2399] Generating rte_pmd_caam_jr.pmd.c with a custom command
[2144/2399] Compiling C object app/test/dpdk-test.p/test_hash_multiwriter.c.o
[2145/2399] Compiling C object drivers/librte_pmd_caam_jr.a.p/meson-generated_.._rte_pmd_caam_jr.pmd.c.o
[2146/2399] Compiling C object app/test/dpdk-test.p/test_external_mem.c.o
[2147/2399] Compiling C object drivers/librte_pmd_caam_jr.so.21.0.p/meson-generated_.._rte_pmd_caam_jr.pmd.c.o
[2148/2399] Linking static target drivers/librte_pmd_caam_jr.a
[2149/2399] Linking target drivers/librte_pmd_bbdev_null.so.21.0
[2150/2399] Compiling C object app/test/dpdk-test.p/test_interrupts.c.o
[2151/2399] Compiling C object app/test/dpdk-test.p/test_kvargs.c.o
[2152/2399] Compiling C object drivers/libtmp_rte_pmd_opdl_event.a.p/event_opdl_opdl_ring.c.o
[2153/2399] Linking static target drivers/libtmp_rte_pmd_opdl_event.a
[2154/2399] Compiling C object app/test/dpdk-test.p/test_fbarray.c.o
[2155/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_txonly.c.o
[2156/2399] Generating rte_pmd_opdl_event.pmd.c with a custom command
[2157/2399] Compiling C object app/test/dpdk-test.p/test_logs.c.o
[2158/2399] Compiling C object app/test/dpdk-test.p/test_bpf.c.o
[2159/2399] Compiling C object app/test/dpdk-test.p/test_hash_functions.c.o
[2160/2399] Compiling C object app/test/dpdk-test.p/test_efd.c.o
[2161/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_parameters.c.o
[2162/2399] Compiling C object app/test/dpdk-test.p/packet_burst_generator.c.o
[2163/2399] Compiling C object drivers/librte_pmd_opdl_event.a.p/meson-generated_.._rte_pmd_opdl_event.pmd.c.o
[2164/2399] Compiling C object drivers/librte_pmd_opdl_event.so.21.0.p/meson-generated_.._rte_pmd_opdl_event.pmd.c.o
[2165/2399] Compiling C object app/test/dpdk-test.p/test_lcores.c.o
[2166/2399] Linking static target drivers/librte_pmd_opdl_event.a
[2167/2399] Generating rte_pmd_bbdev_turbo_sw.sym_chk with a meson_exe.py custom command
[2168/2399] Compiling C object app/test/dpdk-test.p/test_distributor_perf.c.o
[2169/2399] Compiling C object app/test/dpdk-test.p/test_hash_readwrite.c.o
[2170/2399] Compiling C object app/test/dpdk-test.p/test_ethdev_link.c.o
[2171/2399] Linking target drivers/librte_pmd_bbdev_turbo_sw.so.21.0
[2172/2399] Compiling C object app/test/dpdk-test.p/test_fib.c.o
[2173/2399] Compiling C object app/test/dpdk-test.p/test_efd_perf.c.o
[2174/2399] Generating rte_pmd_crypto_scheduler.sym_chk with a meson_exe.py custom command
[2175/2399] Compiling C object app/test/dpdk-test.p/test_fib6.c.o
[2176/2399] Compiling C object app/test/dpdk-test.p/test_acl.c.o
[2177/2399] Compiling C object app/test/dpdk-test.p/test_lpm6_perf.c.o
[2178/2399] Compiling C object app/test/dpdk-test.p/test_memory.c.o
[2179/2399] Compiling C object drivers/libtmp_rte_pmd_sw_event.a.p/event_sw_sw_evdev_selftest.c.o
[2180/2399] Linking static target drivers/libtmp_rte_pmd_sw_event.a
[2181/2399] Linking target drivers/librte_pmd_crypto_scheduler.so.21.0
[2182/2399] Generating rte_pmd_sw_event.pmd.c with a custom command
[2183/2399] Generating rte_pmd_octeontx_event.sym_chk with a meson_exe.py custom command
[2184/2399] Compiling C object drivers/librte_pmd_sw_event.a.p/meson-generated_.._rte_pmd_sw_event.pmd.c.o
[2185/2399] Compiling C object app/test/dpdk-test.p/test_fib_perf.c.o
[2186/2399] Compiling C object app/test/dpdk-test.p/test_flow_classify.c.o
[2187/2399] Compiling C object drivers/librte_pmd_sw_event.so.21.0.p/meson-generated_.._rte_pmd_sw_event.pmd.c.o
[2188/2399] Linking static target drivers/librte_pmd_sw_event.a
[2189/2399] Compiling C object app/test/dpdk-test.p/test_per_lcore.c.o
[2190/2399] Compiling C object app/test/dpdk-test.p/test_event_eth_rx_adapter.c.o
[2191/2399] Compiling C object app/test/dpdk-test.p/test_func_reentrancy.c.o
[2192/2399] Compiling C object app/test/dpdk-test.p/test_power.c.o
[2193/2399] Compiling C object app/test/dpdk-test.p/test_metrics.c.o
[2194/2399] Generating rte_pmd_caam_jr.sym_chk with a meson_exe.py custom command
[2195/2399] Compiling C object app/test/dpdk-test.p/test_prefetch.c.o
[2196/2399] Compiling C object app/test/dpdk-test.p/test_event_crypto_adapter.c.o
[2197/2399] Compiling C object app/test/dpdk-test.p/test_ipfrag.c.o
[2198/2399] Compiling C object app/test/dpdk-test.p/test_rand_perf.c.o
[2199/2399] Compiling C object app/test/dpdk-test.p/test_ipsec_sad.c.o
[2200/2399] Compiling C object app/test/dpdk-test.p/test_power_kvm_vm.c.o
[2201/2399] Compiling C object app/test/dpdk-test.p/test_mcslock.c.o
[2202/2399] Compiling C object app/test/dpdk-test.p/test_power_cpufreq.c.o
[2203/2399] Linking target drivers/librte_pmd_octeontx_event.so.21.0
[2204/2399] Compiling C object app/test/dpdk-test.p/test_hash_perf.c.o
[2205/2399] Compiling C object app/test/dpdk-test.p/test_malloc.c.o
[2206/2399] Linking target drivers/librte_pmd_caam_jr.so.21.0
[2207/2399] Compiling C object app/test/dpdk-test.p/test_memzone.c.o
[2208/2399] Compiling C object app/test/dpdk-test.p/test_hash_readwrite_lf_perf.c.o
[2209/2399] Compiling C object app/test/dpdk-test.p/test_distributor.c.o
[2210/2399] Compiling C object app/test/dpdk-test.p/test_reciprocal_division.c.o
[2211/2399] Generating rte_pmd_opdl_event.sym_chk with a meson_exe.py custom command
[2212/2399] Compiling C object app/test/dpdk-test.p/test_eventdev.c.o
[2213/2399] Compiling C object app/test/dpdk-test.p/test_memcpy.c.o
[2214/2399] Compiling C object app/test/dpdk-test.p/test_reciprocal_division_perf.c.o
[2215/2399] Compiling C object drivers/libtmp_rte_pmd_dsw_event.a.p/event_dsw_dsw_event.c.o
[2216/2399] Linking static target drivers/libtmp_rte_pmd_dsw_event.a
[2217/2399] Generating rte_pmd_dsw_event.pmd.c with a custom command
[2218/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline_flow.c.o
[2219/2399] Compiling C object drivers/librte_pmd_dsw_event.a.p/meson-generated_.._rte_pmd_dsw_event.pmd.c.o
[2220/2399] Linking static target drivers/librte_pmd_dsw_event.a
[2221/2399] Linking target drivers/librte_pmd_opdl_event.so.21.0
[2222/2399] Compiling C object drivers/librte_pmd_dsw_event.so.21.0.p/meson-generated_.._rte_pmd_dsw_event.pmd.c.o
[2223/2399] Compiling C object app/test/dpdk-test.p/test_ring_stress.c.o
[2224/2399] Compiling C object app/test/dpdk-test.p/test_lpm6.c.o
[2225/2399] Compiling C object app/test/dpdk-test.p/test_meter.c.o
[2226/2399] Compiling C object app/test/dpdk-test.p/test_string_fns.c.o
[2227/2399] Compiling C object app/test/dpdk-test.p/test_member.c.o
[2228/2399] Compiling C object app/test/dpdk-test.p/test_spinlock.c.o
[2229/2399] Compiling C object app/test/dpdk-test.p/test_kni.c.o
[2230/2399] Compiling C object app/test/dpdk-test.p/test_graph.c.o
[2231/2399] Compiling C object app/test/dpdk-test.p/test_mp_secondary.c.o
[2232/2399] Generating rte_pmd_sw_event.sym_chk with a meson_exe.py custom command
[2233/2399] Compiling C object app/test/dpdk-test.p/test_rwlock.c.o
[2234/2399] Compiling C object app/test/dpdk-test.p/test_tailq.c.o
[2235/2399] Linking target drivers/librte_pmd_sw_event.so.21.0
[2236/2399] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr_perf.c.o
[2237/2399] Compiling C object app/test/dpdk-test.p/test_rawdev.c.o
[2238/2399] Compiling C object app/test/dpdk-test.p/test_ipsec_perf.c.o
[2239/2399] Compiling C object app/test/dpdk-test.p/test_member_perf.c.o
[2240/2399] Compiling C object app/test/dpdk-test.p/test_cryptodev_asym.c.o
[2241/2399] Compiling C object app/test/dpdk-test.p/test_lpm.c.o
[2242/2399] Compiling C object app/test/dpdk-test.p/test_mempool_perf.c.o
[2243/2399] Compiling C object app/test/dpdk-test.p/test_rib.c.o
[2244/2399] Compiling C object app/test/dpdk-test.p/test_mempool.c.o
[2245/2399] Compiling C object app/test/dpdk-test.p/test_graph_perf.c.o
[2246/2399] Compiling C object app/test/dpdk-test.p/test_stack_perf.c.o
[2247/2399] Compiling C object app/test/dpdk-test.p/test_lpm_perf.c.o
[2248/2399] Compiling C object app/test/dpdk-test.p/test_rib6.c.o
[2249/2399] Compiling C object app/test/dpdk-test.p/test_ring_hts_stress.c.o
[2250/2399] Compiling C object app/test/dpdk-test.p/test_trace_register.c.o
[2251/2399] Compiling C object app/test/dpdk-test.p/test_ring_mpmc_stress.c.o
[2252/2399] Compiling C object app/test/dpdk-test.p/test_version.c.o
[2253/2399] Compiling C object app/test/dpdk-test.p/test_stack.c.o
[2254/2399] Generating rte_kni_makefile with a custom command
[2255/2399] Generating igb_uio_makefile with a custom command
[2256/2399] Compiling C object app/test/dpdk-test.p/test_timer_perf.c.o
[2257/2399] Compiling C object app/test/dpdk-test.p/test_timer_racecond.c.o
[2258/2399] Compiling C object app/test/dpdk-test.p/test_cryptodev_security_pdcp.c.o
[2259/2399] Compiling C object app/test/dpdk-test.p/test_table.c.o
[2260/2399] Generating rte_pmd_dsw_event.sym_chk with a meson_exe.py custom command
[2261/2399] Compiling C object app/test/dpdk-test.p/test_sched.c.o
[2262/2399] Compiling C object app/test/dpdk-test.p/test_telemetry_json.c.o
[2263/2399] Compiling C object app/test/dpdk-test.p/test_ring_st_peek_stress.c.o
[2264/2399] Compiling C object app/test/dpdk-test.p/test_timer.c.o
[2265/2399] Compiling C object app/test/dpdk-test.p/test_reorder.c.o
[2266/2399] Compiling C object app/test/dpdk-test.p/test_hash.c.o
[2267/2399] Compiling C object app/test/dpdk-test.p/test_ticketlock.c.o
[2268/2399] Linking target drivers/librte_pmd_dsw_event.so.21.0
[2269/2399] Compiling C object app/test/dpdk-test.p/test_ring_rts_stress.c.o
[2270/2399] Compiling C object app/test/dpdk-test.p/test_ring_mt_peek_stress.c.o
[2271/2399] Compiling C object app/test/dpdk-test.p/test_bitratestats.c.o
[2272/2399] Compiling C object app/test/dpdk-test.p/test_red.c.o
[2273/2399] Compiling C object app/test/dpdk-test.p/test_telemetry_data.c.o
[2274/2399] Compiling C object app/test/dpdk-test.p/test_cryptodev_blockcipher.c.o
[2275/2399] Compiling C object app/test/dpdk-test.p/test_thash.c.o
[2276/2399] Compiling C object app/test/dpdk-test.p/test_trace.c.o
[2277/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_noisy_vnf.c.o
[2278/2399] Compiling C object app/test/dpdk-test.p/test_pmd_perf.c.o
[2279/2399] Compiling C object app/test/dpdk-test.p/test_event_ring.c.o
[2280/2399] Compiling C object app/test/dpdk-test.p/test_timer_secondary.c.o
[2281/2399] Compiling C object app/test/dpdk-test.p/test_service_cores.c.o
[2282/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_config.c.o
[2283/2399] Compiling C object app/test/dpdk-test.p/test_latencystats.c.o
[2284/2399] Compiling C object app/test/dpdk-test.p/test_link_bonding_rssconf.c.o
[2285/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_csumonly.c.o
[2286/2399] Compiling C object app/test/dpdk-test.p/test_pdump.c.o
[2287/2399] Compiling C object app/test/dpdk-test.p/test_ipsec.c.o
[2288/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_testpmd.c.o
[2289/2399] Compiling C object app/test/dpdk-test.p/test_rcu_qsbr.c.o
[2290/2399] Compiling C object app/test/dpdk-test.p/test_table_pipeline.c.o
[2291/2399] Compiling C object app/test/dpdk-test.p/test_event_eth_tx_adapter.c.o
[2292/2399] Compiling C object app/test/dpdk-test.p/test_pmd_ring.c.o
[2293/2399] Compiling C object app/test/dpdk-test.p/sample_packet_forward.c.o
[2294/2399] Compiling C object app/test/dpdk-test.p/test_table_tables.c.o
[2295/2399] Compiling C object app/test/dpdk-test.p/test_security.c.o
[2296/2399] Compiling C object app/test/dpdk-test.p/test_table_ports.c.o
[2297/2399] Compiling C object app/test/dpdk-test.p/test_table_acl.c.o
[2298/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa_sec.a.p/crypto_dpaa_sec_dpaa_sec.c.o
[2299/2399] Linking static target drivers/libtmp_rte_pmd_dpaa_sec.a
[2300/2399] Generating rte_pmd_dpaa_sec.pmd.c with a custom command
[2301/2399] Compiling C object drivers/librte_pmd_dpaa_sec.so.21.0.p/meson-generated_.._rte_pmd_dpaa_sec.pmd.c.o
[2302/2399] Compiling C object drivers/librte_pmd_dpaa_sec.a.p/meson-generated_.._rte_pmd_dpaa_sec.pmd.c.o
[2303/2399] Linking static target drivers/librte_pmd_dpaa_sec.a
[2304/2399] Compiling C object app/test/dpdk-test.p/test_pmd_ring_perf.c.o
[2305/2399] Compiling C object app/test/dpdk-test.p/test_eal_flags.c.o
[2306/2399] Compiling C object drivers/libtmp_rte_pmd_dpaa2_sec.a.p/crypto_dpaa2_sec_dpaa2_sec_dpseci.c.o
[2307/2399] Linking static target drivers/libtmp_rte_pmd_dpaa2_sec.a
[2308/2399] Generating rte_pmd_dpaa2_sec.pmd.c with a custom command
[2309/2399] Compiling C object app/dpdk-testpmd.p/test-pmd_cmdline.c.o
[2310/2399] Compiling C object drivers/librte_pmd_dpaa2_sec.so.21.0.p/meson-generated_.._rte_pmd_dpaa2_sec.pmd.c.o
[2311/2399] Compiling C object drivers/librte_pmd_dpaa2_sec.a.p/meson-generated_.._rte_pmd_dpaa2_sec.pmd.c.o
[2312/2399] Linking static target drivers/librte_pmd_dpaa2_sec.a
[2313/2399] Compiling C object app/dpdk-test-bbdev.p/test-bbdev_test_bbdev_perf.c.o
[2314/2399] Generating rte_pmd_dpaa_sec.sym_chk with a meson_exe.py custom command
[2315/2399] Linking target drivers/librte_pmd_dpaa_sec.so.21.0
[2316/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_event.a.p/event_octeontx2_otx2_evdev.c.o
[2317/2399] Generating rte_pmd_dpaa2_sec.sym_chk with a meson_exe.py custom command
[2318/2399] Compiling C object app/test/dpdk-test.p/virtual_pmd.c.o
[2319/2399] Linking target drivers/librte_pmd_dpaa2_sec.so.21.0
[2320/2399] Compiling C object app/test/dpdk-test.p/test_compressdev.c.o
[2321/2399] Generating symbol file drivers/librte_pmd_dpaa_sec.so.21.0.p/librte_pmd_dpaa_sec.so.21.0.symbols
[2322/2399] Compiling C object app/test/dpdk-test.p/test_event_timer_adapter.c.o
[2323/2399] Linking target drivers/librte_pmd_dpaa_event.so.21.0
[2324/2399] Generating symbol file drivers/librte_pmd_dpaa2_sec.so.21.0.p/librte_pmd_dpaa2_sec.so.21.0.symbols
[2325/2399] Compiling C object app/test/dpdk-test.p/test_table_combined.c.o
[2326/2399] Linking target drivers/librte_pmd_dpaa2_event.so.21.0
[2327/2399] Compiling C object app/test/dpdk-test.p/test_mbuf.c.o
[2328/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_tx.c.o
[2329/2399] Compiling C object app/test/dpdk-test.p/test_link_bonding_mode4.c.o
[2330/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2.a.p/net_octeontx2_otx2_rx.c.o
[2331/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_crypto.a.p/crypto_octeontx2_otx2_cryptodev_ops.c.o
[2332/2399] Linking static target drivers/libtmp_rte_pmd_octeontx2_crypto.a
[2333/2399] Linking static target drivers/libtmp_rte_pmd_octeontx2.a
[2334/2399] Compiling C object app/test/dpdk-test.p/test_link_bonding.c.o
[2335/2399] Generating rte_pmd_octeontx2_crypto.pmd.c with a custom command
[2336/2399] Compiling C object drivers/librte_pmd_octeontx2_crypto.a.p/meson-generated_.._rte_pmd_octeontx2_crypto.pmd.c.o
[2337/2399] Compiling C object drivers/librte_pmd_octeontx2_crypto.so.21.0.p/meson-generated_.._rte_pmd_octeontx2_crypto.pmd.c.o
[2338/2399] Linking static target drivers/librte_pmd_octeontx2_crypto.a
[2339/2399] Generating rte_pmd_octeontx2.pmd.c with a custom command
[2340/2399] Compiling C object drivers/librte_pmd_octeontx2.a.p/meson-generated_.._rte_pmd_octeontx2.pmd.c.o
[2341/2399] Compiling C object drivers/librte_pmd_octeontx2.so.21.0.p/meson-generated_.._rte_pmd_octeontx2.pmd.c.o
[2342/2399] Linking static target drivers/librte_pmd_octeontx2.a
[2343/2399] Generating rte_pmd_octeontx2_crypto.sym_chk with a meson_exe.py custom command
[2344/2399] Generating rte_pmd_octeontx2.sym_chk with a meson_exe.py custom command
[2345/2399] Linking target drivers/librte_pmd_octeontx2_crypto.so.21.0
[2346/2399] Linking target drivers/librte_pmd_octeontx2.so.21.0
[2347/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx_crypto.a.p/crypto_octeontx_otx_cryptodev_ops.c.o
[2348/2399] Linking static target drivers/libtmp_rte_pmd_octeontx_crypto.a
[2349/2399] Generating rte_pmd_octeontx_crypto.pmd.c with a custom command
[2350/2399] Compiling C object drivers/librte_pmd_octeontx_crypto.so.21.0.p/meson-generated_.._rte_pmd_octeontx_crypto.pmd.c.o
[2351/2399] Compiling C object drivers/librte_pmd_octeontx_crypto.a.p/meson-generated_.._rte_pmd_octeontx_crypto.pmd.c.o
[2352/2399] Linking static target drivers/librte_pmd_octeontx_crypto.a
[2353/2399] Generating igb_uio with a custom command
make: Entering directory '/usr/src/linux-headers-5.4.0-42-generic'
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.mod.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko
make: Leaving directory '/usr/src/linux-headers-5.4.0-42-generic'
[2354/2399] Generating symbol file drivers/librte_pmd_octeontx2.so.21.0.p/librte_pmd_octeontx2.so.21.0.symbols
[2355/2399] Generating rte_pmd_octeontx_crypto.sym_chk with a meson_exe.py custom command
[2356/2399] Linking target drivers/librte_pmd_octeontx_crypto.so.21.0
[2357/2399] Generating rte_kni with a custom command
make: Entering directory '/usr/src/linux-headers-5.4.0-42-generic'
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_net.o
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/kni_misc.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.mod.o
  LD [M]  /root/dpdk/x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
make: Leaving directory '/usr/src/linux-headers-5.4.0-42-generic'
[2358/2399] Compiling C object app/test/dpdk-test.p/test_memcpy_perf.c.o
[2359/2399] Compiling C object app/test/dpdk-test.p/test_cryptodev.c.o
[2360/2399] Compiling C object lib/librte_vhost.a.p/librte_vhost_vhost_crypto.c.o
[2361/2399] Linking static target lib/librte_vhost.a
[2362/2399] Compiling C object app/test/dpdk-test.p/test_trace_perf.c.o
[2363/2399] Generating vhost.sym_chk with a meson_exe.py custom command
[2364/2399] Linking target lib/librte_vhost.so.21.0
[2365/2399] Generating symbol file lib/librte_vhost.so.21.0.p/librte_vhost.so.21.0.symbols
[2366/2399] Linking target drivers/librte_pmd_ifc.so.21.0
[2367/2399] Linking target drivers/librte_pmd_vhost.so.21.0
[2368/2399] Compiling C object lib/librte_pipeline.a.p/librte_pipeline_rte_table_action.c.o
[2369/2399] Linking static target lib/librte_pipeline.a
[2370/2399] Compiling C object app/test/dpdk-test.p/test_ring_perf.c.o
[2371/2399] Generating pipeline.sym_chk with a meson_exe.py custom command
[2372/2399] Linking target lib/librte_pipeline.so.21.0
[2373/2399] Generating symbol file lib/librte_pipeline.so.21.0.p/librte_pipeline.so.21.0.symbols
[2374/2399] Linking target drivers/librte_pmd_softnic.so.21.0
[2375/2399] Compiling C object app/test/dpdk-test.p/test_ring.c.o
[2376/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_event.a.p/event_octeontx2_otx2_worker.c.o
[2377/2399] Compiling C object drivers/libtmp_rte_pmd_octeontx2_event.a.p/event_octeontx2_otx2_worker_dual.c.o
[2378/2399] Linking static target drivers/libtmp_rte_pmd_octeontx2_event.a
[2379/2399] Generating rte_pmd_octeontx2_event.pmd.c with a custom command
[2380/2399] Compiling C object drivers/librte_pmd_octeontx2_event.a.p/meson-generated_.._rte_pmd_octeontx2_event.pmd.c.o
[2381/2399] Compiling C object drivers/librte_pmd_octeontx2_event.so.21.0.p/meson-generated_.._rte_pmd_octeontx2_event.pmd.c.o
[2382/2399] Linking static target drivers/librte_pmd_octeontx2_event.a
[2383/2399] Generating rte_pmd_octeontx2_event.sym_chk with a meson_exe.py custom command
[2384/2399] Linking target drivers/librte_pmd_octeontx2_event.so.21.0
[2385/2399] Linking target app/dpdk-pdump
[2386/2399] Linking target app/dpdk-test-compress-perf
[2387/2399] Linking target app/dpdk-test-fib
[2388/2399] Linking target app/dpdk-test-acl
[2389/2399] Linking target app/dpdk-test-regex
[2390/2399] Linking target app/dpdk-proc-info
[2391/2399] Linking target app/dpdk-test-sad
[2392/2399] Linking target app/dpdk-test-bbdev
[2393/2399] Linking target app/dpdk-test-flow-perf
[2394/2399] Linking target app/dpdk-test-crypto-perf
[2395/2399] Linking target app/dpdk-test-pipeline
[2396/2399] Linking target app/dpdk-test-cmdline
[2397/2399] Linking target app/dpdk-testpmd
[2398/2399] Linking target app/dpdk-test-eventdev
[2399/2399] Linking target app/test/dpdk-test
16/10/2020 16:44:36              dut.10.240.xxx.xx: find ./x86_64-native-linuxapp-gcc/kernel/ -name *.ko
16/10/2020 16:44:36              dut.10.240.xxx.xx: ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko
./x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko
16/10/2020 16:44:36              dut.10.240.xxx.xx: mkdir -p x86_64-native-linuxapp-gcc/kmod
16/10/2020 16:44:36              dut.10.240.xxx.xx: 
16/10/2020 16:44:36              dut.10.240.xxx.xx: cp ./x86_64-native-linuxapp-gcc/kernel/linux/kni/rte_kni.ko x86_64-native-linuxapp-gcc/kmod/
16/10/2020 16:44:36              dut.10.240.xxx.xx: 
16/10/2020 16:44:36              dut.10.240.xxx.xx: cp ./x86_64-native-linuxapp-gcc/kernel/linux/igb_uio/igb_uio.ko x86_64-native-linuxapp-gcc/kmod/
16/10/2020 16:44:36              dut.10.240.xxx.xx: 
16/10/2020 16:44:36                TestFlexibleRxd: Test Case test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues Begin
16/10/2020 16:44:36              dut.10.240.xxx.xx: 
16/10/2020 16:44:36                         tester: 
16/10/2020 16:44:36              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
16/10/2020 16:44:38              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_3116995896730074806 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_550096060647331536 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_17858015520472328775 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_1027528064761339036 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_10111294669457084731 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_6900603483831038228 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_18075094931672503910 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_11448378763267683809 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_12517959684802256536 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_17327294933068231695 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_9060286869078426052 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_12638413060677324050 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_9816028197341924742 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_3557266754356079569 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_6263436219811031577 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_562399650490240172 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_5042391303283390329 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_13884888743500602453 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_18141416169231773891 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_15526860320776946529 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_4997339140498001892 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_4936772301170210882 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_2057155134349615654 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_8180719862169817364 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_11461844575127289111 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_4739251376970434058 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_14115830315075921463 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_2671513846790172831 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_13919820966751056904 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_12247536925838923392 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_9982140960436511389 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_835187119918290417 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_15305034191865755302 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_214069111678445005 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_8742784712262446706 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_1871736929495494949 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_2388193206253133811 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_9830180425045391691 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_6359646444485358461 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_14768863505496248582 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_8200136290222831450 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_17925102892103556897 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_15713658042693751796 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_16876200087732847084 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_16603627494499630520 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_15982461145795508347 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_15715060867110974331 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_13769602998765773153 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_17175044400434494370 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_16325992801932686807 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_1217017339731654934 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_6804913317630153305 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_4908804892985551950 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_6645451674116266732 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_9818234260453399204 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_5303306266251092491 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_3258529775724651361 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_11786745563269020422 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_3939253549181669227 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_7539610951018254904 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_2153426410308992885 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_6740310933418970966 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_11990270198531801402 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_4122265259173299692 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_7275933217328663806 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_3426981033704193215 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_2880684860840343550 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_15823259765307591412 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_18047978535697895522 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_3705649739666667842 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_7319851049526953190 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_7666335000431635907 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_3877122067457777556 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_159009621536944999 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_11612641864461587128 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_4601282564270841852 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_1683529908127578668 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_5598461847460587442 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_6935704370257265054 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_5176506349915571827 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_9797991259063170933 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_13172014002955527167 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_4442161231397337514 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_9744137126422752557 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_3807845489933315013 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_1186025377924067459 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_3306383943629368189 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_6049856253814837330 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_18421700081793582178 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_10732950676370239807 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_15595749535119327146 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_10614092461793316796 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_15309256384747385638 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_5625354635936627613 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_13788666534602204728 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_3184507451821789468 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_3417671613468839300 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_2302266990491245805 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_2300600427384505905 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_10206323928302450936 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_9803308031172196257 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_16697330863934331369 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_2225298141272249152 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_4242593235122308444 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_15390689678157662717 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_10382220492756709025 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_2569057550698700039 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_5163944120648297269 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_11043176131091845453 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_525136120474290003 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_14182171420038421680 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_15517165858823691713 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_11132561846972714117 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_10308297753398824556 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_887691264056884510 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_13180012244356658212 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_192135538970841124 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_4867636269464107553 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_14123018132156672587 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_6271417063564220966 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_4511360398244080882 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_10655189357528213286 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_13441022292055758394 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_1164690767015541952 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_7222375089460174330 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_16169299534045592753 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_6068342408813865549 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_11876174161210747596 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_12186967890903448926 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_17375827556495908154 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_1885156808965364905 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_10172732046640118431 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 22
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 22
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
__vsi_queues_bind_intr(): queue 2 is binding to vect 1
__vsi_queues_bind_intr(): queue 3 is binding to vect 1
__vsi_queues_bind_intr(): queue 4 is binding to vect 1
__vsi_queues_bind_intr(): queue 5 is binding to vect 1
__vsi_queues_bind_intr(): queue 6 is binding to vect 1
__vsi_queues_bind_intr(): queue 7 is binding to vect 1
__vsi_queues_bind_intr(): queue 8 is binding to vect 1
__vsi_queues_bind_intr(): queue 9 is binding to vect 1
__vsi_queues_bind_intr(): queue 10 is binding to vect 1
__vsi_queues_bind_intr(): queue 11 is binding to vect 1
__vsi_queues_bind_intr(): queue 12 is binding to vect 1
__vsi_queues_bind_intr(): queue 13 is binding to vect 1
__vsi_queues_bind_intr(): queue 14 is binding to vect 1
__vsi_queues_bind_intr(): queue 15 is binding to vect 1
__vsi_queues_bind_intr(): queue 16 is binding to vect 1
__vsi_queues_bind_intr(): queue 17 is binding to vect 1
__vsi_queues_bind_intr(): queue 18 is binding to vect 1
__vsi_queues_bind_intr(): queue 19 is binding to vect 1
__vsi_queues_bind_intr(): queue 20 is binding to vect 1
__vsi_queues_bind_intr(): queue 21 is binding to vect 1
__vsi_queues_bind_intr(): queue 22 is binding to vect 1
__vsi_queues_bind_intr(): queue 23 is binding to vect 1
__vsi_queues_bind_intr(): queue 24 is binding to vect 1
__vsi_queues_bind_intr(): queue 25 is binding to vect 1
__vsi_queues_bind_intr(): queue 26 is binding to vect 1
__vsi_queues_bind_intr(): queue 27 is binding to vect 1
__vsi_queues_bind_intr(): queue 28 is binding to vect 1
__vsi_queues_bind_intr(): queue 29 is binding to vect 1
__vsi_queues_bind_intr(): queue 30 is binding to vect 1
__vsi_queues_bind_intr(): queue 31 is binding to vect 1
__vsi_queues_bind_intr(): queue 32 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:44:48              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:44:48              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:44:48              dut.10.240.xxx.xx: set fwd io
16/10/2020 16:44:48              dut.10.240.xxx.xx: 
Set io packet forwarding mode
16/10/2020 16:44:48              dut.10.240.xxx.xx: set promisc all off
16/10/2020 16:44:48              dut.10.240.xxx.xx: 
16/10/2020 16:44:48              dut.10.240.xxx.xx: clear port stats all
16/10/2020 16:44:48              dut.10.240.xxx.xx: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
16/10/2020 16:44:48              dut.10.240.xxx.xx: start
16/10/2020 16:44:48              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:44:48              dut.10.240.xxx.xx: flow create 0 ingress pattern eth dst is 68:05:ca:c1:b8:c8 / 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
16/10/2020 16:44:48              dut.10.240.xxx.xx: 
ice_flow_create(): Succeeded to create (1) flow
16/10/2020 16:44:48              dut.10.240.xxx.xx: flow create 0 ingress pattern eth / ipv6 src is 2001::3 dst is 2001::4 tc is 12 / end actions queue index 3 / end
16/10/2020 16:44:48              dut.10.240.xxx.xx: 
ice_flow_create(): Succeeded to create (1) flow
16/10/2020 16:44:52              dut.10.240.xxx.xx: 
testpmd> port 0/queue 2: received 1 packets
  src=52:54:00:A1:FA:84 - dst=68:05:CA:C1:B8:C8 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x14a696ae - 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 

16/10/2020 16:44:56              dut.10.240.xxx.xx: port 0/queue 3: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - type=0x86dd - length=72 - nb_segs=1 - RSS hash=0x1aff0e8a - 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 

16/10/2020 16:44:56              dut.10.240.xxx.xx: flow flush 0
16/10/2020 16:44:56              dut.10.240.xxx.xx: 
16/10/2020 16:44:56              dut.10.240.xxx.xx: flow create 0 ingress pattern eth dst is 68:05:ca:c1:b8:c8 / 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
16/10/2020 16:44:56              dut.10.240.xxx.xx: 
EAL: Error: Invalid memory
ice_flow_create(): Succeeded to create (1) flow
16/10/2020 16:44:59              dut.10.240.xxx.xx: 
testpmd> port 0/queue 4: received 1 packets
  src=52:54:00:A1:FA:84 - dst=68:05:CA:C1:B8:C8 - type=0x0800 - length=64 - nb_segs=1 - RSS hash=0x14a696ae - 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 

16/10/2020 16:44:59                TestFlexibleRxd: Test Case test_check_IPv4_IPv6_TCP_fields_in_RXD_on_specific_queues Result PASSED:
16/10/2020 16:44:59              dut.10.240.xxx.xx: quit
16/10/2020 16:45:01              dut.10.240.xxx.xx: 
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[12] 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[12] 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_550096060647331536 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_17858015520472328775 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_1027528064761339036 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_10111294669457084731 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_6900603483831038228 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_18075094931672503910 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_11448378763267683809 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_12517959684802256536 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_17327294933068231695 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_9060286869078426052 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_12638413060677324050 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_9816028197341924742 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_3557266754356079569 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_6263436219811031577 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_562399650490240172 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_5042391303283390329 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_13884888743500602453 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_18141416169231773891 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_15526860320776946529 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_4997339140498001892 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_4936772301170210882 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_2057155134349615654 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_8180719862169817364 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_11461844575127289111 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_4739251376970434058 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_14115830315075921463 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_2671513846790172831 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_13919820966751056904 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_12247536925838923392 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_9982140960436511389 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_835187119918290417 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_15305034191865755302 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_3116995896730074806 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_8742784712262446706 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_1871736929495494949 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_2388193206253133811 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_9830180425045391691 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_6359646444485358461 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_14768863505496248582 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_8200136290222831450 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_17925102892103556897 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_15713658042693751796 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_16876200087732847084 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_16603627494499630520 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_15982461145795508347 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_15715060867110974331 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_13769602998765773153 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_17175044400434494370 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_16325992801932686807 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_1217017339731654934 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_6804913317630153305 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_4908804892985551950 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_6645451674116266732 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_9818234260453399204 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_5303306266251092491 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_3258529775724651361 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_11786745563269020422 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_3939253549181669227 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_7539610951018254904 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_2153426410308992885 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_6740310933418970966 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_11990270198531801402 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_4122265259173299692 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_7275933217328663806 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_3426981033704193215 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_214069111678445005 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_15823259765307591412 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_18047978535697895522 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_3705649739666667842 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_7319851049526953190 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_7666335000431635907 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_3877122067457777556 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_159009621536944999 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_11612641864461587128 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_4601282564270841852 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_1683529908127578668 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_5598461847460587442 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_6935704370257265054 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_5176506349915571827 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_9797991259063170933 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_13172014002955527167 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_4442161231397337514 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_9744137126422752557 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_3807845489933315013 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_1186025377924067459 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_3306383943629368189 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_6049856253814837330 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_18421700081793582178 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_10732950676370239807 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_15595749535119327146 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_10614092461793316796 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_15309256384747385638 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_5625354635936627613 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_13788666534602204728 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_3184507451821789468 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_3417671613468839300 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_2302266990491245805 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_2300600427384505905 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_2880684860840343550 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_9803308031172196257 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_16697330863934331369 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_2225298141272249152 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_4242593235122308444 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_15390689678157662717 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_10382220492756709025 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_2569057550698700039 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_5163944120648297269 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_11043176131091845453 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_525136120474290003 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_14182171420038421680 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_15517165858823691713 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_11132561846972714117 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_10308297753398824556 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_887691264056884510 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_13180012244356658212 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_192135538970841124 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_4867636269464107553 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_14123018132156672587 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_6271417063564220966 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_4511360398244080882 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_10655189357528213286 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_13441022292055758394 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_1164690767015541952 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_7222375089460174330 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_16169299534045592753 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_6068342408813865549 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_11876174161210747596 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_12186967890903448926 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_17375827556495908154 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_1885156808965364905 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_10172732046640118431 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_10206323928302450936 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:45:03              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:45:03                TestFlexibleRxd: Test Case test_check_IPv4_fields_in_RXD Begin
16/10/2020 16:45:03              dut.10.240.xxx.xx: 
16/10/2020 16:45:03                         tester: 
16/10/2020 16:45:03              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
16/10/2020 16:45:05              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_13525191753227237293 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_442578238224669691 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_6783200458943230221 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_8694131194633233760 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_11842118751673768928 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_4429907643531058004 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_5648540962117613162 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_16460134172169727825 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_6140499320253959309 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_10842428493339629800 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_11336812380570272198 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_1487448368639321888 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_4407088133198297682 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_4074517369847353401 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_8512801393115288458 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_8714283225889705300 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_8754851603698291264 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_17264494065237739296 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_2341378478431818272 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_2773291878297998213 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_2062014797692005375 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_5846803761849375706 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_10120706389970784187 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_10337769448615339913 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_6265733478798893034 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_8719228829921090750 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_209223784747114971 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_9437779782456990231 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_8004181404478708966 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_3733073592557698922 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_12185566830893573537 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_16077288109094231150 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_7508923983778720014 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_4885277218680148097 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_1584202237136998018 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_10163891057797327964 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_10167681242545358770 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_7108603482495809390 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_1200765041207276560 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_6985772975962672705 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_13400460835563020586 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_10774394196626674365 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_12560711977824582733 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_3857972730114648150 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_11756638767759012905 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_917518733789941325 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_12044507807147366498 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_2309547350601135444 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_5815390668952378841 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_4359586644416234433 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_14723481566380919678 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_18241003651121493412 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_4585266386789781706 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_138941212179158859 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_6890571793167140664 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_247921724782775922 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_13746823106775491999 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_2033396418381889288 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_6850719527811710782 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_1395714846782454002 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_13413032858824042553 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_15781882891171822005 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_4485165814990825589 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_18119014318631186457 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_11515260669320692669 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_4437034492845644237 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_11498032883313008164 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_4475815380848576957 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_10708014010590148042 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_15170870871195859879 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_11228967172285622137 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_14892116129543408540 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_12279987528625882925 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_13118148662539627269 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_18232784700596970199 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_10778364687129846721 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_15184599633111073791 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_17606378560176179535 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_10738500497352621654 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_14106291113823778175 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_14002763264971254446 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_3728949056021011372 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_12169860612802212752 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_12868989581654681125 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_9380841673886332748 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_12357032923164109285 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_5491474170034171622 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_17729132112083472921 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_12745555786498956936 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_11986044477947315357 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_2094597512963914471 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_2213101045977510534 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_15516344657181866823 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_12830554799149293266 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_15976236491644620383 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_3568513206662577156 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_6171794715610337858 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_9891153816337200397 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_11324982333062409179 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_284034704279466187 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_17502484950791107622 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_8891216139912636754 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_10500012569117916881 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_1858493342981151177 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_18281254527524176174 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_11170536977829301266 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_951765348654206553 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_7826205704383158172 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_3008429618981998020 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_1159101819104441924 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_12011009163404436995 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_14838201117412860114 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_1038002733884020815 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_8545419432940839768 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_17595351164541710995 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_14784789958525260348 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_18116844646421607852 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_6725381388765748180 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_14024919055670561511 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_12212459768237383849 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_2387828474626589369 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_3663199710297577502 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_17174500488875429927 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_14277171357111480918 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_11746443411331367789 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_12005252229093250201 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_11548974997112303486 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_408365694569892513 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_6696720045892734375 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_9195172514703176585 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_16666439498320972169 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_9069060720486280575 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 18
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 18
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
__vsi_queues_bind_intr(): queue 2 is binding to vect 1
__vsi_queues_bind_intr(): queue 3 is binding to vect 1
__vsi_queues_bind_intr(): queue 4 is binding to vect 1
__vsi_queues_bind_intr(): queue 5 is binding to vect 1
__vsi_queues_bind_intr(): queue 6 is binding to vect 1
__vsi_queues_bind_intr(): queue 7 is binding to vect 1
__vsi_queues_bind_intr(): queue 8 is binding to vect 1
__vsi_queues_bind_intr(): queue 9 is binding to vect 1
__vsi_queues_bind_intr(): queue 10 is binding to vect 1
__vsi_queues_bind_intr(): queue 11 is binding to vect 1
__vsi_queues_bind_intr(): queue 12 is binding to vect 1
__vsi_queues_bind_intr(): queue 13 is binding to vect 1
__vsi_queues_bind_intr(): queue 14 is binding to vect 1
__vsi_queues_bind_intr(): queue 15 is binding to vect 1
__vsi_queues_bind_intr(): queue 16 is binding to vect 1
__vsi_queues_bind_intr(): queue 17 is binding to vect 1
__vsi_queues_bind_intr(): queue 18 is binding to vect 1
__vsi_queues_bind_intr(): queue 19 is binding to vect 1
__vsi_queues_bind_intr(): queue 20 is binding to vect 1
__vsi_queues_bind_intr(): queue 21 is binding to vect 1
__vsi_queues_bind_intr(): queue 22 is binding to vect 1
__vsi_queues_bind_intr(): queue 23 is binding to vect 1
__vsi_queues_bind_intr(): queue 24 is binding to vect 1
__vsi_queues_bind_intr(): queue 25 is binding to vect 1
__vsi_queues_bind_intr(): queue 26 is binding to vect 1
__vsi_queues_bind_intr(): queue 27 is binding to vect 1
__vsi_queues_bind_intr(): queue 28 is binding to vect 1
__vsi_queues_bind_intr(): queue 29 is binding to vect 1
__vsi_queues_bind_intr(): queue 30 is binding to vect 1
__vsi_queues_bind_intr(): queue 31 is binding to vect 1
__vsi_queues_bind_intr(): queue 32 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:45:15              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:45:15              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:45:15              dut.10.240.xxx.xx: set fwd io
16/10/2020 16:45:15              dut.10.240.xxx.xx: 
Set io packet forwarding mode
16/10/2020 16:45:15              dut.10.240.xxx.xx: set promisc all off
16/10/2020 16:45:15              dut.10.240.xxx.xx: 
16/10/2020 16:45:15              dut.10.240.xxx.xx: clear port stats all
16/10/2020 16:45:15              dut.10.240.xxx.xx: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
16/10/2020 16:45:15              dut.10.240.xxx.xx: start
16/10/2020 16:45:15              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:45:19              dut.10.240.xxx.xx: port 0/queue 5: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4224f5e5 - RSS queue=0x5 - 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=0x5
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

16/10/2020 16:45:19                TestFlexibleRxd: Test Case test_check_IPv4_fields_in_RXD Result PASSED:
16/10/2020 16:45:19              dut.10.240.xxx.xx: quit
16/10/2020 16:45:20              dut.10.240.xxx.xx: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/Queue= 5 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[12] 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[12] 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_442578238224669691 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_6783200458943230221 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_8694131194633233760 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_11842118751673768928 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_4429907643531058004 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_5648540962117613162 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_16460134172169727825 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_6140499320253959309 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_10842428493339629800 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_11336812380570272198 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_1487448368639321888 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_4407088133198297682 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_4074517369847353401 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_8512801393115288458 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_8714283225889705300 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_8754851603698291264 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_17264494065237739296 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_2341378478431818272 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_2773291878297998213 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_2062014797692005375 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_5846803761849375706 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_10120706389970784187 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_10337769448615339913 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_6265733478798893034 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_8719228829921090750 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_209223784747114971 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_9437779782456990231 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_8004181404478708966 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_3733073592557698922 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_12185566830893573537 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_16077288109094231150 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_7508923983778720014 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_13525191753227237293 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_1584202237136998018 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_10163891057797327964 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_10167681242545358770 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_7108603482495809390 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_1200765041207276560 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_6985772975962672705 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_13400460835563020586 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_10774394196626674365 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_12560711977824582733 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_3857972730114648150 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_11756638767759012905 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_917518733789941325 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_12044507807147366498 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_2309547350601135444 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_5815390668952378841 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_4359586644416234433 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_14723481566380919678 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_18241003651121493412 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_4585266386789781706 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_138941212179158859 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_6890571793167140664 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_247921724782775922 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_13746823106775491999 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_2033396418381889288 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_6850719527811710782 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_1395714846782454002 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_13413032858824042553 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_15781882891171822005 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_4485165814990825589 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_18119014318631186457 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_11515260669320692669 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_4437034492845644237 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_4885277218680148097 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_4475815380848576957 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_10708014010590148042 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_15170870871195859879 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_11228967172285622137 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_14892116129543408540 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_12279987528625882925 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_13118148662539627269 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_18232784700596970199 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_10778364687129846721 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_15184599633111073791 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_17606378560176179535 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_10738500497352621654 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_14106291113823778175 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_14002763264971254446 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_3728949056021011372 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_12169860612802212752 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_12868989581654681125 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_9380841673886332748 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_12357032923164109285 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_5491474170034171622 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_17729132112083472921 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_12745555786498956936 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_11986044477947315357 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_2094597512963914471 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_2213101045977510534 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_15516344657181866823 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_12830554799149293266 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_15976236491644620383 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_3568513206662577156 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_6171794715610337858 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_9891153816337200397 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_11324982333062409179 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_11498032883313008164 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_17502484950791107622 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_8891216139912636754 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_10500012569117916881 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_1858493342981151177 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_18281254527524176174 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_11170536977829301266 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_951765348654206553 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_7826205704383158172 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_3008429618981998020 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_1159101819104441924 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_12011009163404436995 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_14838201117412860114 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_1038002733884020815 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_8545419432940839768 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_17595351164541710995 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_14784789958525260348 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_18116844646421607852 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_6725381388765748180 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_14024919055670561511 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_12212459768237383849 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_2387828474626589369 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_3663199710297577502 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_17174500488875429927 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_14277171357111480918 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_11746443411331367789 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_12005252229093250201 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_11548974997112303486 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_408365694569892513 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_6696720045892734375 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_9195172514703176585 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_16666439498320972169 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_9069060720486280575 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_284034704279466187 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:45:22              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:45:23                TestFlexibleRxd: Test Case test_check_IPv6_fields_in_RXD Begin
16/10/2020 16:45:23              dut.10.240.xxx.xx: 
16/10/2020 16:45:23                         tester: 
16/10/2020 16:45:23              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
16/10/2020 16:45:25              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_2568030050835283675 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_2690443772827796042 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_5141499820287791260 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_18308870223519667197 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_12994469747870398544 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_6284426249179733535 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_6057350791612620398 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_10830116165031294760 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_4356540424475821886 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_9853540391632379416 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_2461490478032835186 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_10794050167361566737 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_17024386640679528309 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_1549599524711780493 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_15502782535393798150 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_15198200218706186631 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_1933491868959998035 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_7955844810549888246 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_10208655751749817299 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_1450866274176399304 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_18314470824139101084 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_12842021079503954634 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_12346350431832579118 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_1023856137659514106 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_10807822441508010085 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_16229791095586904345 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_6777229705760382294 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_10547455699945587447 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_7174182796512640743 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_10658542422416444778 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_17773995625826366773 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_16847720496651635680 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_502762957675591608 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_3407538884217810435 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_6047632961134300484 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_3761067905491632357 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_15585092633406394558 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_18204989575779661662 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_1197294743337618994 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_17082147390494409484 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_12877837704696033436 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_8341496826198387199 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_1700837615154919877 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_9813672931116313935 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_12722367159591502631 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_7410819044480995598 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_10496401959893456910 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_6525316675324732052 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_11381232441038227882 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_12413400344758433109 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_12942178858011780897 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_9918841528032830034 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_4923046615859974511 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_14036779438879542967 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_4427334298293553827 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_15534405770301446990 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_3128548780100235143 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_10896779588119877575 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_3978100608388759312 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_18063047955752198622 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_8217396034876819464 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_629344735198789207 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_2935553095696047249 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_17741995824536100308 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_7103784538877312162 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_14750623791931215487 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_4702504186908766725 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_9634731466248535004 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_7320726751895143524 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_17444247518715593419 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_10172329480315729766 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_16621229767598027518 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_17972888688550284705 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_6171966449146350734 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_11887149607633925702 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_18188752584185173086 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_10055144616659525425 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_2086124886943849805 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_18255038691802700740 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_1285035022309336523 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_14193215087064532002 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_14256281953100371615 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_13863424341384521864 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_1476697418053702109 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_11097978465712753853 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_7595753545650014020 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_6492303646581174086 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_12365477490280285211 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_14374508183465707416 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_3190323877572184432 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_16640621539068759718 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_7829124472990342485 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_7554722121374170243 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_7845833636286630633 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_7340885613000039761 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_5592475683164610159 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_1699054493595296366 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_12288883456329809707 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_8663893302496050762 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_7288284469986069970 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_17050123374505127547 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_17055866535403894012 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_4605825505599483802 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_3715856334314614882 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_397014513610927256 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_15805681513264164173 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_15653113560307853641 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_6711497650906161967 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_1943192994317094458 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_5122144621161496873 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_6390240309131841541 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_13688181721842317230 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_5757421692851383009 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_5739242122003097844 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_851294434976347109 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_2814492233532964052 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_14496579392681604616 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_10948435197144725116 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_15810118744691773854 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_1907398601579618923 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_4968177505402804013 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_14782547141492967614 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_10019213868003393932 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_16978967192142646251 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_1574459340863295822 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_4730908970946195408 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_15255425052300257713 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_14504759854201639786 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_18390651712490365952 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_7410581110846178618 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_1733713964165027151 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_12807581885089963008 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 19
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 19
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
__vsi_queues_bind_intr(): queue 2 is binding to vect 1
__vsi_queues_bind_intr(): queue 3 is binding to vect 1
__vsi_queues_bind_intr(): queue 4 is binding to vect 1
__vsi_queues_bind_intr(): queue 5 is binding to vect 1
__vsi_queues_bind_intr(): queue 6 is binding to vect 1
__vsi_queues_bind_intr(): queue 7 is binding to vect 1
__vsi_queues_bind_intr(): queue 8 is binding to vect 1
__vsi_queues_bind_intr(): queue 9 is binding to vect 1
__vsi_queues_bind_intr(): queue 10 is binding to vect 1
__vsi_queues_bind_intr(): queue 11 is binding to vect 1
__vsi_queues_bind_intr(): queue 12 is binding to vect 1
__vsi_queues_bind_intr(): queue 13 is binding to vect 1
__vsi_queues_bind_intr(): queue 14 is binding to vect 1
__vsi_queues_bind_intr(): queue 15 is binding to vect 1
__vsi_queues_bind_intr(): queue 16 is binding to vect 1
__vsi_queues_bind_intr(): queue 17 is binding to vect 1
__vsi_queues_bind_intr(): queue 18 is binding to vect 1
__vsi_queues_bind_intr(): queue 19 is binding to vect 1
__vsi_queues_bind_intr(): queue 20 is binding to vect 1
__vsi_queues_bind_intr(): queue 21 is binding to vect 1
__vsi_queues_bind_intr(): queue 22 is binding to vect 1
__vsi_queues_bind_intr(): queue 23 is binding to vect 1
__vsi_queues_bind_intr(): queue 24 is binding to vect 1
__vsi_queues_bind_intr(): queue 25 is binding to vect 1
__vsi_queues_bind_intr(): queue 26 is binding to vect 1
__vsi_queues_bind_intr(): queue 27 is binding to vect 1
__vsi_queues_bind_intr(): queue 28 is binding to vect 1
__vsi_queues_bind_intr(): queue 29 is binding to vect 1
__vsi_queues_bind_intr(): queue 30 is binding to vect 1
__vsi_queues_bind_intr(): queue 31 is binding to vect 1
__vsi_queues_bind_intr(): queue 32 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:45:35              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:45:35              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:45:35              dut.10.240.xxx.xx: set fwd io
16/10/2020 16:45:35              dut.10.240.xxx.xx: 
Set io packet forwarding mode
16/10/2020 16:45:35              dut.10.240.xxx.xx: set promisc all off
16/10/2020 16:45:35              dut.10.240.xxx.xx: 
16/10/2020 16:45:35              dut.10.240.xxx.xx: clear port stats all
16/10/2020 16:45:35              dut.10.240.xxx.xx: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
16/10/2020 16:45:35              dut.10.240.xxx.xx: start
16/10/2020 16:45:35              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:45:39              dut.10.240.xxx.xx: port 0/queue 13: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - type=0x86dd - length=72 - nb_segs=1 - RSS hash=0xe7fcd36d - RSS queue=0xd - 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=0xd
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

16/10/2020 16:45:39                TestFlexibleRxd: Test Case test_check_IPv6_fields_in_RXD Result PASSED:
16/10/2020 16:45:39              dut.10.240.xxx.xx: quit
16/10/2020 16:45:40              dut.10.240.xxx.xx: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[12] 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[12] 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_2690443772827796042 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_5141499820287791260 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_18308870223519667197 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_12994469747870398544 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_6284426249179733535 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_6057350791612620398 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_10830116165031294760 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_4356540424475821886 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_9853540391632379416 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_2461490478032835186 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_10794050167361566737 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_17024386640679528309 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_1549599524711780493 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_15502782535393798150 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_15198200218706186631 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_1933491868959998035 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_7955844810549888246 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_10208655751749817299 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_1450866274176399304 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_18314470824139101084 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_12842021079503954634 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_12346350431832579118 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_1023856137659514106 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_10807822441508010085 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_16229791095586904345 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_6777229705760382294 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_10547455699945587447 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_7174182796512640743 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_10658542422416444778 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_17773995625826366773 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_16847720496651635680 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_502762957675591608 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_2568030050835283675 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_6047632961134300484 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_3761067905491632357 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_15585092633406394558 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_18204989575779661662 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_1197294743337618994 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_17082147390494409484 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_12877837704696033436 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_8341496826198387199 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_1700837615154919877 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_9813672931116313935 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_12722367159591502631 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_7410819044480995598 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_10496401959893456910 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_6525316675324732052 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_11381232441038227882 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_12413400344758433109 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_12942178858011780897 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_9918841528032830034 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_4923046615859974511 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_14036779438879542967 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_4427334298293553827 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_15534405770301446990 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_3128548780100235143 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_10896779588119877575 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_3978100608388759312 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_18063047955752198622 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_8217396034876819464 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_629344735198789207 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_2935553095696047249 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_17741995824536100308 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_7103784538877312162 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_14750623791931215487 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_3407538884217810435 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_9634731466248535004 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_7320726751895143524 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_17444247518715593419 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_10172329480315729766 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_16621229767598027518 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_17972888688550284705 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_6171966449146350734 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_11887149607633925702 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_18188752584185173086 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_10055144616659525425 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_2086124886943849805 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_18255038691802700740 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_1285035022309336523 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_14193215087064532002 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_14256281953100371615 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_13863424341384521864 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_1476697418053702109 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_11097978465712753853 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_7595753545650014020 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_6492303646581174086 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_12365477490280285211 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_14374508183465707416 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_3190323877572184432 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_16640621539068759718 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_7829124472990342485 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_7554722121374170243 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_7845833636286630633 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_7340885613000039761 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_5592475683164610159 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_1699054493595296366 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_12288883456329809707 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_8663893302496050762 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_4702504186908766725 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_17050123374505127547 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_17055866535403894012 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_4605825505599483802 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_3715856334314614882 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_397014513610927256 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_15805681513264164173 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_15653113560307853641 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_6711497650906161967 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_1943192994317094458 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_5122144621161496873 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_6390240309131841541 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_13688181721842317230 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_5757421692851383009 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_5739242122003097844 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_851294434976347109 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_2814492233532964052 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_14496579392681604616 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_10948435197144725116 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_15810118744691773854 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_1907398601579618923 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_4968177505402804013 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_14782547141492967614 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_10019213868003393932 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_16978967192142646251 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_1574459340863295822 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_4730908970946195408 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_15255425052300257713 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_14504759854201639786 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_18390651712490365952 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_7410581110846178618 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_1733713964165027151 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_12807581885089963008 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_7288284469986069970 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:45:42              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:45:42                TestFlexibleRxd: Test Case test_check_IPv6_flow_field_in_RXD Begin
16/10/2020 16:45:43              dut.10.240.xxx.xx: 
16/10/2020 16:45:43                         tester: 
16/10/2020 16:45:43              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
16/10/2020 16:45:44              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_14941786712301210905 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_9579757369243699495 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_5687113992418662366 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_3514063788371827146 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_9901849357465457723 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_8449875218147529035 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_712984165350824980 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_8049267050105921985 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_5230365506363999133 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_11610065778375514237 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_11478028554283482646 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_7821597677449315111 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_7720789442285047642 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_1715078066547996976 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_10885919733362855962 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_6154964337589249539 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_17979037964158681028 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_15282142368319173071 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_3941643846863651951 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_11266922480115367006 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_7694680047943656430 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_2708701250563092112 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_457758960373769496 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_16040942623555205016 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_10218036689913598723 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_1636788174195052424 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_6915384680499006313 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_13516852087752257657 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_2225567738968443132 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_4727737974888960565 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_805152301775835862 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_4012647657068568003 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_18108329985556797686 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_13150088408390025121 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_8695705113950502934 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_15821808466506374575 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_14105979003237489778 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_6366301137250361168 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_1747099464756539556 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_12705061807484689480 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_6634239162346873546 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_7198296313888578869 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_341692435377457182 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_7954359334058674477 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_2074927051584002834 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_12202259176134642138 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_18310275535948677548 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_5072388027783138853 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_13863559055979631458 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_14068894989012435365 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_10179116869624643134 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_16281728745457255920 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_14571804937704575060 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_13196599797978835916 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_11675944102499051592 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_490159639563090712 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_10095058834930046551 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_15550817856592137162 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_790101650642264374 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_2715829067504148135 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_12768973763522315438 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_3590670067109020881 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_12571204024804667293 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_1846872622971788338 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_4773271480120552738 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_9231630717827963136 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_11486389423110183289 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_7300176232826700048 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_10632419309675499474 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_5917703219657622942 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_9327965179818959623 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_12623790939746263702 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_14771515193124690556 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_2199397184878676459 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_10891062192635283672 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_15485386376043070399 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_1920336280042670877 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_17599570210806910352 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_11331437010076518829 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_5122922210067240716 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_17078961380003045154 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_10138832734011043740 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_9786157529592574611 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_8655334681188662247 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_1792942174058424251 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_1463068948860538829 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_13627930919441486611 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_15537303291179264172 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_4351873430216704939 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_14997472849901093915 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_6100641365350983496 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_610562982119145482 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_3702258746171950319 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_6653220268579318660 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_15429852118470658966 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_11235534094319474112 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_11586722852310815497 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_3402404348232123047 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_13897366419808508680 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_2607003743346059549 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_9392660756827651343 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_9647311361820012106 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_12190084633363386173 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_5231482799896602693 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_8665473770806758754 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_15991818473384076919 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_11156763291756727663 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_7699370239736940811 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_11897121096467554134 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_3291476155646292464 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_17339896201079286198 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_16758626056371996089 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_9337902298472169424 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_3450675874374439349 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_4934754800102362203 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_11597519404101292891 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_2843030538957112610 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_9549601365742547429 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_16081743901634819861 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_1450288926217066486 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_13834025117959806574 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_10876615598960903850 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_7712795914423594486 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_6379353948031006017 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_8805748994603246108 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_3445244791336234627 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_7388083931500181323 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_7500399355541160864 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_18299873710489919275 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_3808271261680504800 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_6650631903260853852 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_8062846121565102377 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 20
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 20
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
__vsi_queues_bind_intr(): queue 2 is binding to vect 1
__vsi_queues_bind_intr(): queue 3 is binding to vect 1
__vsi_queues_bind_intr(): queue 4 is binding to vect 1
__vsi_queues_bind_intr(): queue 5 is binding to vect 1
__vsi_queues_bind_intr(): queue 6 is binding to vect 1
__vsi_queues_bind_intr(): queue 7 is binding to vect 1
__vsi_queues_bind_intr(): queue 8 is binding to vect 1
__vsi_queues_bind_intr(): queue 9 is binding to vect 1
__vsi_queues_bind_intr(): queue 10 is binding to vect 1
__vsi_queues_bind_intr(): queue 11 is binding to vect 1
__vsi_queues_bind_intr(): queue 12 is binding to vect 1
__vsi_queues_bind_intr(): queue 13 is binding to vect 1
__vsi_queues_bind_intr(): queue 14 is binding to vect 1
__vsi_queues_bind_intr(): queue 15 is binding to vect 1
__vsi_queues_bind_intr(): queue 16 is binding to vect 1
__vsi_queues_bind_intr(): queue 17 is binding to vect 1
__vsi_queues_bind_intr(): queue 18 is binding to vect 1
__vsi_queues_bind_intr(): queue 19 is binding to vect 1
__vsi_queues_bind_intr(): queue 20 is binding to vect 1
__vsi_queues_bind_intr(): queue 21 is binding to vect 1
__vsi_queues_bind_intr(): queue 22 is binding to vect 1
__vsi_queues_bind_intr(): queue 23 is binding to vect 1
__vsi_queues_bind_intr(): queue 24 is binding to vect 1
__vsi_queues_bind_intr(): queue 25 is binding to vect 1
__vsi_queues_bind_intr(): queue 26 is binding to vect 1
__vsi_queues_bind_intr(): queue 27 is binding to vect 1
__vsi_queues_bind_intr(): queue 28 is binding to vect 1
__vsi_queues_bind_intr(): queue 29 is binding to vect 1
__vsi_queues_bind_intr(): queue 30 is binding to vect 1
__vsi_queues_bind_intr(): queue 31 is binding to vect 1
__vsi_queues_bind_intr(): queue 32 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:45:54              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:45:54              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:45:54              dut.10.240.xxx.xx: set fwd io
16/10/2020 16:45:55              dut.10.240.xxx.xx: 
Set io packet forwarding mode
16/10/2020 16:45:55              dut.10.240.xxx.xx: set promisc all off
16/10/2020 16:45:55              dut.10.240.xxx.xx: 
16/10/2020 16:45:55              dut.10.240.xxx.xx: clear port stats all
16/10/2020 16:45:55              dut.10.240.xxx.xx: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
16/10/2020 16:45:55              dut.10.240.xxx.xx: start
16/10/2020 16:45:55              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:45:58              dut.10.240.xxx.xx: port 0/queue 20: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - type=0x86dd - length=72 - nb_segs=1 - RSS hash=0xcd340874 - RSS queue=0x14 - 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=0x14
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

16/10/2020 16:45:58                TestFlexibleRxd: Test Case test_check_IPv6_flow_field_in_RXD Result PASSED:
16/10/2020 16:45:58              dut.10.240.xxx.xx: quit
16/10/2020 16:46:00              dut.10.240.xxx.xx: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=20 -> TX Port= 0/Queue=20 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[12] 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[12] 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_9579757369243699495 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_5687113992418662366 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_3514063788371827146 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_9901849357465457723 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_8449875218147529035 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_712984165350824980 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_8049267050105921985 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_5230365506363999133 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_11610065778375514237 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_11478028554283482646 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_7821597677449315111 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_7720789442285047642 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_1715078066547996976 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_10885919733362855962 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_6154964337589249539 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_17979037964158681028 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_15282142368319173071 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_3941643846863651951 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_11266922480115367006 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_7694680047943656430 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_2708701250563092112 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_457758960373769496 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_16040942623555205016 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_10218036689913598723 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_1636788174195052424 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_6915384680499006313 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_13516852087752257657 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_2225567738968443132 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_4727737974888960565 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_805152301775835862 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_4012647657068568003 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_18108329985556797686 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_14941786712301210905 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_8695705113950502934 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_15821808466506374575 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_14105979003237489778 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_6366301137250361168 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_1747099464756539556 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_12705061807484689480 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_6634239162346873546 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_7198296313888578869 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_341692435377457182 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_7954359334058674477 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_2074927051584002834 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_12202259176134642138 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_18310275535948677548 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_5072388027783138853 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_13863559055979631458 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_14068894989012435365 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_10179116869624643134 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_16281728745457255920 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_14571804937704575060 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_13196599797978835916 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_11675944102499051592 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_490159639563090712 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_10095058834930046551 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_15550817856592137162 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_790101650642264374 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_2715829067504148135 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_12768973763522315438 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_3590670067109020881 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_12571204024804667293 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_1846872622971788338 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_4773271480120552738 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_9231630717827963136 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_13150088408390025121 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_7300176232826700048 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_10632419309675499474 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_5917703219657622942 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_9327965179818959623 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_12623790939746263702 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_14771515193124690556 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_2199397184878676459 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_10891062192635283672 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_15485386376043070399 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_1920336280042670877 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_17599570210806910352 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_11331437010076518829 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_5122922210067240716 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_17078961380003045154 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_10138832734011043740 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_9786157529592574611 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_8655334681188662247 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_1792942174058424251 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_1463068948860538829 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_13627930919441486611 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_15537303291179264172 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_4351873430216704939 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_14997472849901093915 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_6100641365350983496 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_610562982119145482 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_3702258746171950319 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_6653220268579318660 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_15429852118470658966 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_11235534094319474112 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_11586722852310815497 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_3402404348232123047 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_13897366419808508680 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_11486389423110183289 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_9392660756827651343 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_9647311361820012106 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_12190084633363386173 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_5231482799896602693 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_8665473770806758754 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_15991818473384076919 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_11156763291756727663 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_7699370239736940811 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_11897121096467554134 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_3291476155646292464 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_17339896201079286198 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_16758626056371996089 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_9337902298472169424 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_3450675874374439349 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_4934754800102362203 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_11597519404101292891 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_2843030538957112610 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_9549601365742547429 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_16081743901634819861 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_1450288926217066486 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_13834025117959806574 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_10876615598960903850 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_7712795914423594486 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_6379353948031006017 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_8805748994603246108 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_3445244791336234627 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_7388083931500181323 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_7500399355541160864 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_18299873710489919275 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_3808271261680504800 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_6650631903260853852 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_8062846121565102377 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_2607003743346059549 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:46:02              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:46:02                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv4_in_RXD Begin
16/10/2020 16:46:02              dut.10.240.xxx.xx: 
16/10/2020 16:46:02                         tester: 
16/10/2020 16:46:02              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
16/10/2020 16:46:04              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_18333487271728004702 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_17063434800457308197 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_15275363091257641314 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_2532561455344671950 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_7050876280101048591 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_3910360102303646022 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_12564359294386089400 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_11873301762105110806 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_923692029762965030 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_10470991649026504023 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_54403435109057892 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_13111705532150872559 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_621011149589526176 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_2934998973895858475 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_18094604319141880641 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_15852079078007724719 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_10572629208155260315 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_881441280850531848 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_10597070310787224207 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_13280215539802829827 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_9561331210549799176 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_15319346777985695274 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_11581621391926052977 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_4518566580147787092 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_8615128345839442346 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_11306020123224036570 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_15204004470103823516 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_16449906491438574884 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_1146820700667434414 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_7752471397957088682 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_2626003132870115100 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_8366084378656534406 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_17361536095606330601 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_7618739332413241843 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_16237194386553478598 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_16924312428106073179 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_11693890102007142451 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_7513329557603556909 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_2416663016189347924 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_13771110837579237863 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_9069321436301218484 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_2241651350967178663 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_17014596239754861483 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_15379339949375245767 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_3703600863511475459 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_3772600910763338772 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_5622863416352886248 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_11275993207665051787 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_8834161074145560165 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_10964401913887781797 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_4754532096203508735 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_11033181985124279106 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_4902330919725325782 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_16465515229287843465 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_12987976353776633509 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_12274735265018409382 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_3346108940744876154 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_10770402905119354449 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_9938927311889908498 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_9510708231305353758 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_6473824437365048816 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_10191759352221075691 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_9110782003584851244 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_11211547937347097016 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_1048305961866549111 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_16603690314847050878 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_17751347048452810910 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_17443325109889321759 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_1920344694595015600 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_14173273353371898865 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_4041475667242083079 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_14708636909227338978 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_21508147278796007 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_6810149882581411193 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_7456791355583137072 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_13126099284654256048 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_1648007230638350662 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_14439298870757857128 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_3008844828412150580 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_13599300946781716726 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_16921581535363421730 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_2822921457203171969 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_18281531874487385261 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_10387319658097435630 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_8339334781025935622 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_17068898603369595648 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_5948052557177618366 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_6914125610394440639 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_6192364763750113003 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_15403958491819227088 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_657204266822482882 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_10144088308089927461 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_18237532085091279727 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_4380058875059990247 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_3890789744215240078 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_15282496592223453326 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_16789706709185398081 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_4449792508622981042 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_2769471719958486462 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_4671998524184439110 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_13912644711321494976 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_17447756641691093656 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_5420844598630442188 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_14478605238555962864 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_490786392168264401 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_13945045889249522683 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_1584284194653786728 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_12919437559168643109 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_2265467293141965279 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_11194455973373645152 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_9152261012068275801 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_16618525144188266282 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_16177366083336246604 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_3106920239733728970 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_833672935326602048 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_9885281628447358591 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_2971705734752563770 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_10504416305697560636 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_15089182765499918499 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_9242344797228252056 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_10728203276949105221 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_15980052442722239681 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_6167138041805687441 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_6629100628240458271 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_407390866030381199 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_3340778012288141909 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_13392508428445396279 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_3209852867897314376 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_9259481733962658111 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_11152238337460089472 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_10176275315581911370 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_2393669491103810451 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 21
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
__vsi_queues_bind_intr(): queue 2 is binding to vect 1
__vsi_queues_bind_intr(): queue 3 is binding to vect 1
__vsi_queues_bind_intr(): queue 4 is binding to vect 1
__vsi_queues_bind_intr(): queue 5 is binding to vect 1
__vsi_queues_bind_intr(): queue 6 is binding to vect 1
__vsi_queues_bind_intr(): queue 7 is binding to vect 1
__vsi_queues_bind_intr(): queue 8 is binding to vect 1
__vsi_queues_bind_intr(): queue 9 is binding to vect 1
__vsi_queues_bind_intr(): queue 10 is binding to vect 1
__vsi_queues_bind_intr(): queue 11 is binding to vect 1
__vsi_queues_bind_intr(): queue 12 is binding to vect 1
__vsi_queues_bind_intr(): queue 13 is binding to vect 1
__vsi_queues_bind_intr(): queue 14 is binding to vect 1
__vsi_queues_bind_intr(): queue 15 is binding to vect 1
__vsi_queues_bind_intr(): queue 16 is binding to vect 1
__vsi_queues_bind_intr(): queue 17 is binding to vect 1
__vsi_queues_bind_intr(): queue 18 is binding to vect 1
__vsi_queues_bind_intr(): queue 19 is binding to vect 1
__vsi_queues_bind_intr(): queue 20 is binding to vect 1
__vsi_queues_bind_intr(): queue 21 is binding to vect 1
__vsi_queues_bind_intr(): queue 22 is binding to vect 1
__vsi_queues_bind_intr(): queue 23 is binding to vect 1
__vsi_queues_bind_intr(): queue 24 is binding to vect 1
__vsi_queues_bind_intr(): queue 25 is binding to vect 1
__vsi_queues_bind_intr(): queue 26 is binding to vect 1
__vsi_queues_bind_intr(): queue 27 is binding to vect 1
__vsi_queues_bind_intr(): queue 28 is binding to vect 1
__vsi_queues_bind_intr(): queue 29 is binding to vect 1
__vsi_queues_bind_intr(): queue 30 is binding to vect 1
__vsi_queues_bind_intr(): queue 31 is binding to vect 1
__vsi_queues_bind_intr(): queue 32 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:46:14              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:46:14              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:46:14              dut.10.240.xxx.xx: set fwd io
16/10/2020 16:46:14              dut.10.240.xxx.xx: 
Set io packet forwarding mode
16/10/2020 16:46:14              dut.10.240.xxx.xx: set promisc all off
16/10/2020 16:46:14              dut.10.240.xxx.xx: 
16/10/2020 16:46:14              dut.10.240.xxx.xx: clear port stats all
16/10/2020 16:46:14              dut.10.240.xxx.xx: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
16/10/2020 16:46:14              dut.10.240.xxx.xx: start
16/10/2020 16:46:14              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:46:18              dut.10.240.xxx.xx: port 0/queue 26: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - type=0x0800 - length=64 - nb_segs=1 - RSS hash=0x5b11e0ba - RSS queue=0x1a - 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=0x1a
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

16/10/2020 16:46:18                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv4_in_RXD Result PASSED:
16/10/2020 16:46:18              dut.10.240.xxx.xx: quit
16/10/2020 16:46:19              dut.10.240.xxx.xx: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=26 -> TX Port= 0/Queue=26 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[12] 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[12] 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_17063434800457308197 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_15275363091257641314 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_2532561455344671950 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_7050876280101048591 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_3910360102303646022 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_12564359294386089400 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_11873301762105110806 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_923692029762965030 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_10470991649026504023 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_54403435109057892 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_13111705532150872559 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_621011149589526176 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_2934998973895858475 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_18094604319141880641 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_15852079078007724719 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_10572629208155260315 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_881441280850531848 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_10597070310787224207 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_13280215539802829827 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_9561331210549799176 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_15319346777985695274 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_11581621391926052977 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_4518566580147787092 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_8615128345839442346 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_11306020123224036570 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_15204004470103823516 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_16449906491438574884 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_1146820700667434414 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_7752471397957088682 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_2626003132870115100 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_8366084378656534406 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_17361536095606330601 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_18333487271728004702 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_16237194386553478598 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_16924312428106073179 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_11693890102007142451 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_7513329557603556909 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_2416663016189347924 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_13771110837579237863 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_9069321436301218484 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_2241651350967178663 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_17014596239754861483 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_15379339949375245767 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_3703600863511475459 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_3772600910763338772 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_5622863416352886248 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_11275993207665051787 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_8834161074145560165 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_10964401913887781797 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_4754532096203508735 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_11033181985124279106 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_4902330919725325782 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_16465515229287843465 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_12987976353776633509 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_12274735265018409382 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_3346108940744876154 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_10770402905119354449 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_9938927311889908498 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_9510708231305353758 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_6473824437365048816 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_10191759352221075691 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_9110782003584851244 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_11211547937347097016 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_1048305961866549111 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_16603690314847050878 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_7618739332413241843 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_17443325109889321759 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_1920344694595015600 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_14173273353371898865 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_4041475667242083079 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_14708636909227338978 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_21508147278796007 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_6810149882581411193 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_7456791355583137072 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_13126099284654256048 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_1648007230638350662 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_14439298870757857128 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_3008844828412150580 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_13599300946781716726 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_16921581535363421730 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_2822921457203171969 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_18281531874487385261 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_10387319658097435630 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_8339334781025935622 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_17068898603369595648 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_5948052557177618366 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_6914125610394440639 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_6192364763750113003 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_15403958491819227088 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_657204266822482882 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_10144088308089927461 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_18237532085091279727 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_4380058875059990247 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_3890789744215240078 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_15282496592223453326 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_16789706709185398081 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_4449792508622981042 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_2769471719958486462 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_17751347048452810910 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_13912644711321494976 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_17447756641691093656 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_5420844598630442188 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_14478605238555962864 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_490786392168264401 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_13945045889249522683 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_1584284194653786728 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_12919437559168643109 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_2265467293141965279 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_11194455973373645152 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_9152261012068275801 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_16618525144188266282 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_16177366083336246604 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_3106920239733728970 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_833672935326602048 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_9885281628447358591 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_2971705734752563770 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_10504416305697560636 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_15089182765499918499 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_9242344797228252056 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_10728203276949105221 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_15980052442722239681 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_6167138041805687441 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_6629100628240458271 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_407390866030381199 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_3340778012288141909 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_13392508428445396279 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_3209852867897314376 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_9259481733962658111 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_11152238337460089472 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_10176275315581911370 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_2393669491103810451 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_4671998524184439110 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:46:21              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:46:22                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv6_in_RXD Begin
16/10/2020 16:46:22              dut.10.240.xxx.xx: 
16/10/2020 16:46:22                         tester: 
16/10/2020 16:46:22              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
16/10/2020 16:46:24              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_2302749444943982199 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_12414670113896167437 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_1031795158153640011 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_7602298448405180820 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_4061033334611639368 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_4652619981283692014 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_18063838611705231575 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_8213864533408649954 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_4098122437926603143 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_7917714439509331702 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_8242693555423736560 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_10591551041631947521 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_10882415975569162427 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_4267356392422809947 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_14979369684672888721 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_2505947607869791383 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_2627488478549627941 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_15149804198301183044 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_8886273148134202890 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_7604409102986786485 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_1366985015634639007 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_13157941992326229320 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_580218600623141549 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_18332528007941280353 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_11519809952042817757 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_7669817921932197268 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_18242670380320268724 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_17518396392182414669 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_9842950276940968971 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_5694849356478837472 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_16018530415872838697 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_1422061651224652862 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_16514235761597177532 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_9699345508653706095 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_2513433807974198524 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_65020141835758637 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_270645168434052656 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_9328076375293861622 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_5623464418917015870 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_14633169011902201625 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_11123190088452048354 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_6587276850903741092 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_11750482603317910395 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_9535253135798635526 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_5971094349056397457 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_996191366437163382 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_10543405861041679523 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_14713440186620590301 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_4135718924388810165 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_2344158841556395602 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_5728188942721229195 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_599078070968312802 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_16177322357586488296 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_12445836643068434799 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_14718684490740370476 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_4916802011256147488 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_5676735320402360010 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_16368336105352405745 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_12427325216664956477 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_14276543636916843122 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_8728159220427100864 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_12072291577002402182 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_4975908735908514073 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_8169727657080567494 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_9459775641279657727 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_16506075809629608960 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_6020349011931631637 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_6287262329464728650 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_5003798577899669060 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_15501338091479610664 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_12618473858748177750 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_2352553677051988995 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_272451310109978361 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_16428918916256136217 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_11102723768333441888 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_6422445375641050511 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_14726465595616759491 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_5932453839556920927 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_15328295194853343244 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_15903115733964969531 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_12537273276503649273 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_982117938145775261 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_3026561568108819052 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_11646179654282326654 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_1568772851514139905 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_2551462223264247932 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_10122352112447266072 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_4916567748095094666 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_18114713232544600593 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_3016628586501250493 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_16892566308468368011 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_17710965995580910564 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_5186864796024809498 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_7482684700174275971 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_13407737201732774123 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_13109020728180170391 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_11734622249840977557 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_6993183017704885516 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_14467629549595039470 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_3011549315442015152 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_3200089600758398109 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_17322212577315657902 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_15794334711102260562 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_3070653229437087670 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_7972079158688068791 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_1649481176639927586 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_13456717186662235201 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_224468476415918638 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_5691463531745851991 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_14722648734301827524 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_6836820178554984700 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_17676526648979633382 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_6656026505436243805 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_6192878647224967949 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_14246729116745484994 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_16487515237605815317 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_16456326862099289313 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_958638613228515229 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_14872001143385914354 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_18420083676917444821 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_14069798637606789119 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_4602826728215105800 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_8749253374434294767 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_8044409974014479833 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_13354279618967172055 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_3748206458848606796 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_18041383632073791267 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_12940477861775606770 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_6519759289528525804 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_4828398363724994696 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_1525983073488864843 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_9903059545618259135 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 21
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 21
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
__vsi_queues_bind_intr(): queue 2 is binding to vect 1
__vsi_queues_bind_intr(): queue 3 is binding to vect 1
__vsi_queues_bind_intr(): queue 4 is binding to vect 1
__vsi_queues_bind_intr(): queue 5 is binding to vect 1
__vsi_queues_bind_intr(): queue 6 is binding to vect 1
__vsi_queues_bind_intr(): queue 7 is binding to vect 1
__vsi_queues_bind_intr(): queue 8 is binding to vect 1
__vsi_queues_bind_intr(): queue 9 is binding to vect 1
__vsi_queues_bind_intr(): queue 10 is binding to vect 1
__vsi_queues_bind_intr(): queue 11 is binding to vect 1
__vsi_queues_bind_intr(): queue 12 is binding to vect 1
__vsi_queues_bind_intr(): queue 13 is binding to vect 1
__vsi_queues_bind_intr(): queue 14 is binding to vect 1
__vsi_queues_bind_intr(): queue 15 is binding to vect 1
__vsi_queues_bind_intr(): queue 16 is binding to vect 1
__vsi_queues_bind_intr(): queue 17 is binding to vect 1
__vsi_queues_bind_intr(): queue 18 is binding to vect 1
__vsi_queues_bind_intr(): queue 19 is binding to vect 1
__vsi_queues_bind_intr(): queue 20 is binding to vect 1
__vsi_queues_bind_intr(): queue 21 is binding to vect 1
__vsi_queues_bind_intr(): queue 22 is binding to vect 1
__vsi_queues_bind_intr(): queue 23 is binding to vect 1
__vsi_queues_bind_intr(): queue 24 is binding to vect 1
__vsi_queues_bind_intr(): queue 25 is binding to vect 1
__vsi_queues_bind_intr(): queue 26 is binding to vect 1
__vsi_queues_bind_intr(): queue 27 is binding to vect 1
__vsi_queues_bind_intr(): queue 28 is binding to vect 1
__vsi_queues_bind_intr(): queue 29 is binding to vect 1
__vsi_queues_bind_intr(): queue 30 is binding to vect 1
__vsi_queues_bind_intr(): queue 31 is binding to vect 1
__vsi_queues_bind_intr(): queue 32 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:46:34              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:46:34              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:46:34              dut.10.240.xxx.xx: set fwd io
16/10/2020 16:46:34              dut.10.240.xxx.xx: 
Set io packet forwarding mode
16/10/2020 16:46:34              dut.10.240.xxx.xx: set promisc all off
16/10/2020 16:46:34              dut.10.240.xxx.xx: 
16/10/2020 16:46:34              dut.10.240.xxx.xx: clear port stats all
16/10/2020 16:46:34              dut.10.240.xxx.xx: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
16/10/2020 16:46:34              dut.10.240.xxx.xx: start
16/10/2020 16:46:34              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:46:38              dut.10.240.xxx.xx: port 0/queue 2: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - type=0x86dd - length=84 - nb_segs=1 - RSS hash=0x90de7142 - RSS queue=0x2 - 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=0x2
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

16/10/2020 16:46:38                TestFlexibleRxd: Test Case test_check_TCP_fields_in_IPv6_in_RXD Result PASSED:
16/10/2020 16:46:38              dut.10.240.xxx.xx: quit
16/10/2020 16:46:39              dut.10.240.xxx.xx: 
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[12] 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[12] 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_12414670113896167437 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_1031795158153640011 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_7602298448405180820 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_4061033334611639368 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_4652619981283692014 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_18063838611705231575 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_8213864533408649954 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_4098122437926603143 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_7917714439509331702 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_8242693555423736560 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_10591551041631947521 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_10882415975569162427 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_4267356392422809947 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_14979369684672888721 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_2505947607869791383 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_2627488478549627941 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_15149804198301183044 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_8886273148134202890 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_7604409102986786485 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_1366985015634639007 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_13157941992326229320 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_580218600623141549 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_18332528007941280353 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_11519809952042817757 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_7669817921932197268 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_18242670380320268724 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_17518396392182414669 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_9842950276940968971 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_5694849356478837472 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_16018530415872838697 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_1422061651224652862 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_16514235761597177532 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_2302749444943982199 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_2513433807974198524 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_65020141835758637 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_270645168434052656 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_9328076375293861622 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_5623464418917015870 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_14633169011902201625 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_11123190088452048354 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_6587276850903741092 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_11750482603317910395 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_9535253135798635526 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_5971094349056397457 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_996191366437163382 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_10543405861041679523 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_14713440186620590301 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_4135718924388810165 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_2344158841556395602 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_5728188942721229195 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_599078070968312802 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_16177322357586488296 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_12445836643068434799 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_14718684490740370476 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_4916802011256147488 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_5676735320402360010 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_16368336105352405745 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_12427325216664956477 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_14276543636916843122 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_8728159220427100864 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_12072291577002402182 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_4975908735908514073 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_8169727657080567494 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_9459775641279657727 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_16506075809629608960 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_9699345508653706095 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_6287262329464728650 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_5003798577899669060 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_15501338091479610664 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_12618473858748177750 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_2352553677051988995 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_272451310109978361 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_16428918916256136217 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_11102723768333441888 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_6422445375641050511 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_14726465595616759491 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_5932453839556920927 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_15328295194853343244 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_15903115733964969531 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_12537273276503649273 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_982117938145775261 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_3026561568108819052 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_11646179654282326654 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_1568772851514139905 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_2551462223264247932 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_10122352112447266072 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_4916567748095094666 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_18114713232544600593 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_3016628586501250493 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_16892566308468368011 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_17710965995580910564 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_5186864796024809498 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_7482684700174275971 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_13407737201732774123 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_13109020728180170391 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_11734622249840977557 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_6993183017704885516 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_14467629549595039470 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_6020349011931631637 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_3200089600758398109 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_17322212577315657902 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_15794334711102260562 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_3070653229437087670 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_7972079158688068791 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_1649481176639927586 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_13456717186662235201 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_224468476415918638 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_5691463531745851991 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_14722648734301827524 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_6836820178554984700 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_17676526648979633382 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_6656026505436243805 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_6192878647224967949 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_14246729116745484994 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_16487515237605815317 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_16456326862099289313 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_958638613228515229 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_14872001143385914354 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_18420083676917444821 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_14069798637606789119 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_4602826728215105800 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_8749253374434294767 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_8044409974014479833 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_13354279618967172055 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_3748206458848606796 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_18041383632073791267 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_12940477861775606770 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_6519759289528525804 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_4828398363724994696 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_1525983073488864843 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_9903059545618259135 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_3011549315442015152 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:46:41              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:46:41                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag Begin
16/10/2020 16:46:42              dut.10.240.xxx.xx: 
16/10/2020 16:46:42                         tester: 
16/10/2020 16:46:42              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
16/10/2020 16:46:43              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_7802852425788466128 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_12872689220901160337 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_6749120934383092111 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_12107266408440653495 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_16083416761891779476 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_2134143276691190235 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_7549552389447245196 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_4641554261225256849 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_10365534227034742357 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_18196418865426310037 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_7133988648142802543 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_12986089109277895006 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_17839695227722710283 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_18380783439021522981 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_9414621011109325084 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_15931900405399165901 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_4649676401049238985 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_6287405266771121575 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_2468467899810954566 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_12293806470885118134 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_7724311462414544840 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_8225742849739867100 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_12229836067988450298 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_9941538521618720302 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_677459457172392586 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_9352613774212250677 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_7627400789180771529 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_16643965379044723543 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_3235633012300938162 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_353219313636840169 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_8651521125521586795 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_15802721713391979190 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_3734874218398516476 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_8702450002361372432 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_14583321613273168878 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_12428333452601658244 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_4507544109795943768 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_3101886900379457649 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_12882598103393873541 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_2578988357645592775 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_17751807941467219225 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_4336960442179601235 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_18416096142782804632 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_4503707016631093210 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_3681198983253749730 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_16681454244674709519 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_5998630392272655485 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_10791585702140144055 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_12388625278284560063 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_5220035981818788966 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_10680364642456351331 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_3563159822363723502 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_6088057844099822125 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_3992618757675139959 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_3947278488520511793 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_4274812326250989410 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_15966921415024376449 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_1486788910332579089 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_6372146829508574379 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_16781323711600950512 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_9696743539423487281 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_16473792964747184042 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_14159538744245495412 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_5915165742629432967 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_11232499882823805886 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_16250604262428182563 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_1440047067556090050 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_2717863796121498580 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_17125386608855658814 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_1446693614371562094 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_12950293835950039851 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_2042650473026649925 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_6452983766453090948 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_16936688512032229657 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_14404675210529809909 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_18298435339411600453 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_1187253331623697809 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_8686187990331503126 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_4043886186184567331 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_6865274538630662236 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_10364617892950330709 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_15887801133655576261 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_2181359241986568370 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_9096728059144726839 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_7498688974680893141 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_16281886786122275162 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_2952522684048357499 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_12479998616312419427 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_5642086900094279299 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_9057160455122636555 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_18323805392074621365 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_896010836208028930 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_7752215737514920557 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_14324207218650450632 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_10993167297399844957 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_15976756170980347075 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_12600861031426777256 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_3980848522492283968 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_2256536534631032872 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_5667492589880774163 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_15412002632036514798 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_11869409526650253905 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_1103072257169694459 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_10387311717985154885 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_13786305912963758561 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_852126721886079037 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_13201911428365182498 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_8936193785198219961 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_14250517024845997850 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_9808265930500372725 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_8929597988532439385 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_10330304741686470387 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_11455688607449028781 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_5029823314710562300 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_17087003692919958745 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_17382011258520643961 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_8651053352103705096 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_3954824663293739621 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_1114695307402307117 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_7435515357740215864 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_15288196884631496623 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_6204192793307307494 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_17328192853489932059 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_14040976974043630630 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_8214905578989901078 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_16702749830693684759 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_8395316573587188681 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_17397205661403660255 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_4414856364655883708 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_3827281895273004463 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_2817166605538057767 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_6242258881745603558 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 17
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
__vsi_queues_bind_intr(): queue 2 is binding to vect 1
__vsi_queues_bind_intr(): queue 3 is binding to vect 1
__vsi_queues_bind_intr(): queue 4 is binding to vect 1
__vsi_queues_bind_intr(): queue 5 is binding to vect 1
__vsi_queues_bind_intr(): queue 6 is binding to vect 1
__vsi_queues_bind_intr(): queue 7 is binding to vect 1
__vsi_queues_bind_intr(): queue 8 is binding to vect 1
__vsi_queues_bind_intr(): queue 9 is binding to vect 1
__vsi_queues_bind_intr(): queue 10 is binding to vect 1
__vsi_queues_bind_intr(): queue 11 is binding to vect 1
__vsi_queues_bind_intr(): queue 12 is binding to vect 1
__vsi_queues_bind_intr(): queue 13 is binding to vect 1
__vsi_queues_bind_intr(): queue 14 is binding to vect 1
__vsi_queues_bind_intr(): queue 15 is binding to vect 1
__vsi_queues_bind_intr(): queue 16 is binding to vect 1
__vsi_queues_bind_intr(): queue 17 is binding to vect 1
__vsi_queues_bind_intr(): queue 18 is binding to vect 1
__vsi_queues_bind_intr(): queue 19 is binding to vect 1
__vsi_queues_bind_intr(): queue 20 is binding to vect 1
__vsi_queues_bind_intr(): queue 21 is binding to vect 1
__vsi_queues_bind_intr(): queue 22 is binding to vect 1
__vsi_queues_bind_intr(): queue 23 is binding to vect 1
__vsi_queues_bind_intr(): queue 24 is binding to vect 1
__vsi_queues_bind_intr(): queue 25 is binding to vect 1
__vsi_queues_bind_intr(): queue 26 is binding to vect 1
__vsi_queues_bind_intr(): queue 27 is binding to vect 1
__vsi_queues_bind_intr(): queue 28 is binding to vect 1
__vsi_queues_bind_intr(): queue 29 is binding to vect 1
__vsi_queues_bind_intr(): queue 30 is binding to vect 1
__vsi_queues_bind_intr(): queue 31 is binding to vect 1
__vsi_queues_bind_intr(): queue 32 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:46:53              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:46:53              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:46:53              dut.10.240.xxx.xx: set fwd io
16/10/2020 16:46:54              dut.10.240.xxx.xx: 
Set io packet forwarding mode
16/10/2020 16:46:54              dut.10.240.xxx.xx: set promisc all off
16/10/2020 16:46:54              dut.10.240.xxx.xx: 
16/10/2020 16:46:54              dut.10.240.xxx.xx: clear port stats all
16/10/2020 16:46:54              dut.10.240.xxx.xx: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
16/10/2020 16:46:54              dut.10.240.xxx.xx: start
16/10/2020 16:46:54              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:46:57              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:46:57                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_1_VLAN_tag Result PASSED:
16/10/2020 16:46:57              dut.10.240.xxx.xx: quit
16/10/2020 16:46:59              dut.10.240.xxx.xx: 
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[12] 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[12] 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_12872689220901160337 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_6749120934383092111 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_12107266408440653495 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_16083416761891779476 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_2134143276691190235 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_7549552389447245196 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_4641554261225256849 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_10365534227034742357 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_18196418865426310037 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_7133988648142802543 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_12986089109277895006 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_17839695227722710283 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_18380783439021522981 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_9414621011109325084 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_15931900405399165901 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_4649676401049238985 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_6287405266771121575 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_2468467899810954566 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_12293806470885118134 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_7724311462414544840 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_8225742849739867100 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_12229836067988450298 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_9941538521618720302 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_677459457172392586 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_9352613774212250677 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_7627400789180771529 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_16643965379044723543 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_3235633012300938162 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_353219313636840169 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_8651521125521586795 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_15802721713391979190 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_3734874218398516476 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_7802852425788466128 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_14583321613273168878 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_12428333452601658244 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_4507544109795943768 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_3101886900379457649 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_12882598103393873541 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_2578988357645592775 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_17751807941467219225 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_4336960442179601235 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_18416096142782804632 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_4503707016631093210 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_3681198983253749730 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_16681454244674709519 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_5998630392272655485 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_10791585702140144055 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_12388625278284560063 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_5220035981818788966 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_10680364642456351331 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_3563159822363723502 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_6088057844099822125 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_3992618757675139959 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_3947278488520511793 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_4274812326250989410 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_15966921415024376449 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_1486788910332579089 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_6372146829508574379 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_16781323711600950512 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_9696743539423487281 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_16473792964747184042 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_14159538744245495412 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_5915165742629432967 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_11232499882823805886 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_16250604262428182563 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_8702450002361372432 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_2717863796121498580 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_17125386608855658814 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_1446693614371562094 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_12950293835950039851 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_2042650473026649925 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_6452983766453090948 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_16936688512032229657 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_14404675210529809909 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_18298435339411600453 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_1187253331623697809 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_8686187990331503126 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_4043886186184567331 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_6865274538630662236 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_10364617892950330709 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_15887801133655576261 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_2181359241986568370 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_9096728059144726839 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_7498688974680893141 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_16281886786122275162 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_2952522684048357499 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_12479998616312419427 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_5642086900094279299 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_9057160455122636555 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_18323805392074621365 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_896010836208028930 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_7752215737514920557 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_14324207218650450632 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_10993167297399844957 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_15976756170980347075 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_12600861031426777256 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_3980848522492283968 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_2256536534631032872 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_1440047067556090050 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_15412002632036514798 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_11869409526650253905 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_1103072257169694459 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_10387311717985154885 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_13786305912963758561 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_852126721886079037 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_13201911428365182498 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_8936193785198219961 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_14250517024845997850 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_9808265930500372725 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_8929597988532439385 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_10330304741686470387 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_11455688607449028781 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_5029823314710562300 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_17087003692919958745 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_17382011258520643961 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_8651053352103705096 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_3954824663293739621 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_1114695307402307117 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_7435515357740215864 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_15288196884631496623 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_6204192793307307494 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_17328192853489932059 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_14040976974043630630 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_8214905578989901078 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_16702749830693684759 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_8395316573587188681 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_17397205661403660255 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_4414856364655883708 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_3827281895273004463 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_2817166605538057767 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_6242258881745603558 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_5667492589880774163 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:47:01              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:47:01                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag Begin
16/10/2020 16:47:01              dut.10.240.xxx.xx: 
16/10/2020 16:47:01                         tester: 
16/10/2020 16:47:01              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
16/10/2020 16:47:03              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_8681186614576678354 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_1397874423406561270 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_4518076807726121838 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_17594079607849926772 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_15373626975410515772 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_7273763397912352046 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_3335482659062018743 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_1574050199976843991 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_2269985704271117482 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_5332850795628048 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_4433601628440672220 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_7766512277302038417 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_8566882174997172418 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_10928796097428767080 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_9555904612506368397 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_3264941180746709215 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_2477300889899853459 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_1093325832127336813 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_6416632801091721912 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_12185619385006657969 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_5265908824874248552 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_648059826393729093 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_14825494676144961510 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_1205258425124035524 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_7036705955705303262 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_14133350964009575713 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_6150396748068971325 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_15499882889843809134 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_15793472512033655051 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_10780701522020296861 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_14236617605400372672 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_2931197825886137710 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_51305713190364117 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_12330314939476094226 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_1304783707981058412 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_16211815956222733110 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_957569528358968466 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_17319972788327716812 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_5219534111332767036 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_13550220296960747008 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_3052250035326231346 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_9584404772733673044 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_9878203718311606325 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_4628452056459893805 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_17959069727795086412 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_11094357377484469147 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_12877807182776065561 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_16248230688394751424 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_12305501789282177800 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_5201882136746151034 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_1343927422785992161 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_1193221159049630197 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_6267004197076464683 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_16952587148516978101 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_13201831914088498966 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_12443639329151934980 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_1880322411533498654 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_10451675385842526654 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_2075533365329141032 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_2117784463012872801 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_4108905392469924720 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_11852583377795771426 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_18077115504256938399 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_11131158528756644668 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_10248949196997041929 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_14704327959914613033 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_6454250918933194857 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_3167840658314437322 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_2150137575071292763 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_16922290918053483932 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_18360256009265359777 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_14275926367042981269 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_8494970682631709598 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_17391018157125041177 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_4815557227735694415 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_9491536192194859931 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_4258550312171960223 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_12518557138505150558 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_1436011754329022141 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_10133853706554027385 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_565233511315757818 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_18174718803102087287 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_6386555215846538851 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_6870514175708766275 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_15145407086788553833 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_6129203019194534113 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_12161050220306470307 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_5434520474875891155 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_7378284833728684914 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_12682320495483665606 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_15750871355682826034 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_8507421804000733252 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_7708520101323127189 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_16497150050053804906 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_5523589448215188338 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_5505932170681285550 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_14835340765329940385 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_6963550999809821900 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_17977193805078840467 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_2505542129857430427 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_16654887598657949295 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_992080913422167131 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_364632752037662220 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_1161564711901689297 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_13403975509338727058 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_16576423142077788521 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_17764650146592232444 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_3751989743972589192 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_8506730989154740699 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_2940824430195740557 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_3778410270960315585 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_16399656911075738376 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_2326602134500389405 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_1161257546382909120 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_18003364440166286710 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_9543401183738524070 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_5422486441914174663 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_325239351474389048 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_7573566809777369238 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_484930142070087890 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_10397488218175530546 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_12117820249598132961 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_5342939776689322986 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_3328537845402679518 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_6701623049966508527 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_7395876184351307988 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_663255926298781672 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_7328504835817031144 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_10395789025478734340 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_18050897508615176727 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_13214639668289896236 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_13022101377837112634 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 17
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
__vsi_queues_bind_intr(): queue 2 is binding to vect 1
__vsi_queues_bind_intr(): queue 3 is binding to vect 1
__vsi_queues_bind_intr(): queue 4 is binding to vect 1
__vsi_queues_bind_intr(): queue 5 is binding to vect 1
__vsi_queues_bind_intr(): queue 6 is binding to vect 1
__vsi_queues_bind_intr(): queue 7 is binding to vect 1
__vsi_queues_bind_intr(): queue 8 is binding to vect 1
__vsi_queues_bind_intr(): queue 9 is binding to vect 1
__vsi_queues_bind_intr(): queue 10 is binding to vect 1
__vsi_queues_bind_intr(): queue 11 is binding to vect 1
__vsi_queues_bind_intr(): queue 12 is binding to vect 1
__vsi_queues_bind_intr(): queue 13 is binding to vect 1
__vsi_queues_bind_intr(): queue 14 is binding to vect 1
__vsi_queues_bind_intr(): queue 15 is binding to vect 1
__vsi_queues_bind_intr(): queue 16 is binding to vect 1
__vsi_queues_bind_intr(): queue 17 is binding to vect 1
__vsi_queues_bind_intr(): queue 18 is binding to vect 1
__vsi_queues_bind_intr(): queue 19 is binding to vect 1
__vsi_queues_bind_intr(): queue 20 is binding to vect 1
__vsi_queues_bind_intr(): queue 21 is binding to vect 1
__vsi_queues_bind_intr(): queue 22 is binding to vect 1
__vsi_queues_bind_intr(): queue 23 is binding to vect 1
__vsi_queues_bind_intr(): queue 24 is binding to vect 1
__vsi_queues_bind_intr(): queue 25 is binding to vect 1
__vsi_queues_bind_intr(): queue 26 is binding to vect 1
__vsi_queues_bind_intr(): queue 27 is binding to vect 1
__vsi_queues_bind_intr(): queue 28 is binding to vect 1
__vsi_queues_bind_intr(): queue 29 is binding to vect 1
__vsi_queues_bind_intr(): queue 30 is binding to vect 1
__vsi_queues_bind_intr(): queue 31 is binding to vect 1
__vsi_queues_bind_intr(): queue 32 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:47:13              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:47:13              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:47:13              dut.10.240.xxx.xx: set fwd io
16/10/2020 16:47:13              dut.10.240.xxx.xx: 
Set io packet forwarding mode
16/10/2020 16:47:13              dut.10.240.xxx.xx: set promisc all off
16/10/2020 16:47:13              dut.10.240.xxx.xx: 
16/10/2020 16:47:13              dut.10.240.xxx.xx: clear port stats all
16/10/2020 16:47:13              dut.10.240.xxx.xx: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
16/10/2020 16:47:13              dut.10.240.xxx.xx: start
16/10/2020 16:47:13              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:47:17              dut.10.240.xxx.xx: port 0/queue 6: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - type=0x9100 - length=62 - nb_segs=1 - RSS hash=0x3e969226 - RSS queue=0x6 - Protocol Extraction:[0x2017:0x8038],vlan,stag=1: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=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

16/10/2020 16:47:17                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021Q_2_VLAN_tag Result PASSED:
16/10/2020 16:47:17              dut.10.240.xxx.xx: quit
16/10/2020 16:47:18              dut.10.240.xxx.xx: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[12] 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[12] 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_1397874423406561270 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_4518076807726121838 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_17594079607849926772 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_15373626975410515772 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_7273763397912352046 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_3335482659062018743 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_1574050199976843991 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_2269985704271117482 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_5332850795628048 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_4433601628440672220 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_7766512277302038417 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_8566882174997172418 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_10928796097428767080 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_9555904612506368397 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_3264941180746709215 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_2477300889899853459 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_1093325832127336813 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_6416632801091721912 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_12185619385006657969 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_5265908824874248552 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_648059826393729093 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_14825494676144961510 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_1205258425124035524 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_7036705955705303262 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_14133350964009575713 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_6150396748068971325 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_15499882889843809134 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_15793472512033655051 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_10780701522020296861 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_14236617605400372672 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_2931197825886137710 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_51305713190364117 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_8681186614576678354 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_1304783707981058412 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_16211815956222733110 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_957569528358968466 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_17319972788327716812 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_5219534111332767036 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_13550220296960747008 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_3052250035326231346 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_9584404772733673044 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_9878203718311606325 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_4628452056459893805 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_17959069727795086412 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_11094357377484469147 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_12877807182776065561 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_16248230688394751424 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_12305501789282177800 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_5201882136746151034 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_1343927422785992161 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_1193221159049630197 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_6267004197076464683 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_16952587148516978101 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_13201831914088498966 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_12443639329151934980 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_1880322411533498654 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_10451675385842526654 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_2075533365329141032 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_2117784463012872801 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_4108905392469924720 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_11852583377795771426 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_18077115504256938399 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_11131158528756644668 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_10248949196997041929 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_14704327959914613033 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_12330314939476094226 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_3167840658314437322 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_2150137575071292763 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_16922290918053483932 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_18360256009265359777 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_14275926367042981269 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_8494970682631709598 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_17391018157125041177 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_4815557227735694415 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_9491536192194859931 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_4258550312171960223 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_12518557138505150558 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_1436011754329022141 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_10133853706554027385 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_565233511315757818 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_18174718803102087287 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_6386555215846538851 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_6870514175708766275 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_15145407086788553833 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_6129203019194534113 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_12161050220306470307 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_5434520474875891155 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_7378284833728684914 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_12682320495483665606 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_15750871355682826034 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_8507421804000733252 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_7708520101323127189 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_16497150050053804906 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_5523589448215188338 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_5505932170681285550 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_14835340765329940385 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_6963550999809821900 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_17977193805078840467 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_6454250918933194857 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_16654887598657949295 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_992080913422167131 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_364632752037662220 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_1161564711901689297 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_13403975509338727058 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_16576423142077788521 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_17764650146592232444 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_3751989743972589192 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_8506730989154740699 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_2940824430195740557 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_3778410270960315585 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_16399656911075738376 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_2326602134500389405 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_1161257546382909120 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_18003364440166286710 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_9543401183738524070 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_5422486441914174663 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_325239351474389048 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_7573566809777369238 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_484930142070087890 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_10397488218175530546 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_12117820249598132961 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_5342939776689322986 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_3328537845402679518 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_6701623049966508527 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_7395876184351307988 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_663255926298781672 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_7328504835817031144 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_10395789025478734340 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_18050897508615176727 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_13214639668289896236 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_13022101377837112634 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_2505542129857430427 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:47:20              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:47:21                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021ad Begin
16/10/2020 16:47:21              dut.10.240.xxx.xx: 
16/10/2020 16:47:21                         tester: 
16/10/2020 16:47:21              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
16/10/2020 16:47:23              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_14236902694877898984 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_8639464293958832479 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_18251163534657415106 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_17239096622573636966 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_18302557811318821979 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_11798297455282928325 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_7247298268459160699 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_845021143737255796 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_15283227463929638610 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_9696258759215669286 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_10227943003741850257 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_5937254439373522406 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_9440235175794055019 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_8921951521845256705 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_379377066447174377 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_9844245298981525980 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_14824895535391741399 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_13999626935807031949 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_5636900562486071091 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_12481927166177338131 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_3393455558590944361 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_13785953586120891184 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_14874223623700669385 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_17746687528708816043 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_7155006606629766435 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_5909738736473107695 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_10750490260436979666 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_6533371427814235188 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_11243867850686959163 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_14465559528817509194 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_16841644127767795475 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_4926671899368064471 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_5272438784668157722 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_6556828808215025416 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_8180390479685275969 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_12208035668408440557 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_2246924474041333752 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_18028303908103061413 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_4476645457610571375 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_15524463328794722578 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_16484669562855850831 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_10824844296823760732 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_5428370817912539215 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_14701998468356698507 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_3017220213559975526 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_9958642460149150319 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_6734801359267622637 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_3023283252004634310 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_15836399070131729342 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_8414472706584788728 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_9780392689031388936 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_11907455865615935466 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_7048268001325446921 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_1747213429379876585 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_5953337239263834638 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_4724589524366654350 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_7670564289268750634 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_14985518977397697420 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_10200998075978329295 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_17130569971456778342 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_2063726018642275136 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_14925826723062336265 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_13179733732526702227 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_14424152443118078622 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_6738246372993125433 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_4049859644055181854 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_16566073407443376903 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_8446376188611725040 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_311715361717021804 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_12385568870429167363 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_16671864860805804909 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_15953743007966136778 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_5201280535894430518 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_840350445163955101 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_12201281013405901671 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_9252134012215738644 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_16833858561044688021 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_3769090359350655056 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_6345179816904660228 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_9287478423786115286 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_13373613118630317915 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_17239440402536729105 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_3931219906246298847 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_3195360390212957378 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_1181294798024181826 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_11188886918439736970 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_6063390971473292917 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_5399241493328417409 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_11048938904999356057 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_7555014178269559915 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_16266359822009592485 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_15065041889344094155 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_2920480784363194349 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_11780762359165873891 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_8373949513602334981 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_9680742544362960572 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_7525487120019694120 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_10472473217230610980 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_2714354763697421556 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_15509941338403641442 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_3908984105665105560 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_16687025135941688119 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_17138422908359713431 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_9934877536768137999 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_4486447193257001718 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_18072019379505776931 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_14505531266055242828 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_16213953987652685044 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_1912243748034378128 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_3503062094337578866 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_4804940053876162730 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_8423170118166752648 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_11333462574579987891 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_3344556906810891057 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_65171700155112041 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_17870467592536960629 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_9824857431844280041 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_9211041813344121413 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_12836626325351074729 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_4069657916911529611 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_13978122678229549336 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_12428963512215785565 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_10109311687196854540 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_9604328479354285770 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_3046964242899842768 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_4802879431592658036 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_12079749008547195951 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_3149872243152754029 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_13967095466562882177 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_15162621218153209929 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_11888244689590399834 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_4685027811836869555 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 17
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
__vsi_queues_bind_intr(): queue 2 is binding to vect 1
__vsi_queues_bind_intr(): queue 3 is binding to vect 1
__vsi_queues_bind_intr(): queue 4 is binding to vect 1
__vsi_queues_bind_intr(): queue 5 is binding to vect 1
__vsi_queues_bind_intr(): queue 6 is binding to vect 1
__vsi_queues_bind_intr(): queue 7 is binding to vect 1
__vsi_queues_bind_intr(): queue 8 is binding to vect 1
__vsi_queues_bind_intr(): queue 9 is binding to vect 1
__vsi_queues_bind_intr(): queue 10 is binding to vect 1
__vsi_queues_bind_intr(): queue 11 is binding to vect 1
__vsi_queues_bind_intr(): queue 12 is binding to vect 1
__vsi_queues_bind_intr(): queue 13 is binding to vect 1
__vsi_queues_bind_intr(): queue 14 is binding to vect 1
__vsi_queues_bind_intr(): queue 15 is binding to vect 1
__vsi_queues_bind_intr(): queue 16 is binding to vect 1
__vsi_queues_bind_intr(): queue 17 is binding to vect 1
__vsi_queues_bind_intr(): queue 18 is binding to vect 1
__vsi_queues_bind_intr(): queue 19 is binding to vect 1
__vsi_queues_bind_intr(): queue 20 is binding to vect 1
__vsi_queues_bind_intr(): queue 21 is binding to vect 1
__vsi_queues_bind_intr(): queue 22 is binding to vect 1
__vsi_queues_bind_intr(): queue 23 is binding to vect 1
__vsi_queues_bind_intr(): queue 24 is binding to vect 1
__vsi_queues_bind_intr(): queue 25 is binding to vect 1
__vsi_queues_bind_intr(): queue 26 is binding to vect 1
__vsi_queues_bind_intr(): queue 27 is binding to vect 1
__vsi_queues_bind_intr(): queue 28 is binding to vect 1
__vsi_queues_bind_intr(): queue 29 is binding to vect 1
__vsi_queues_bind_intr(): queue 30 is binding to vect 1
__vsi_queues_bind_intr(): queue 31 is binding to vect 1
__vsi_queues_bind_intr(): queue 32 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:47:33              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:47:33              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:47:33              dut.10.240.xxx.xx: set fwd io
16/10/2020 16:47:33              dut.10.240.xxx.xx: 
Set io packet forwarding mode
16/10/2020 16:47:33              dut.10.240.xxx.xx: set promisc all off
16/10/2020 16:47:33              dut.10.240.xxx.xx: 
16/10/2020 16:47:33              dut.10.240.xxx.xx: clear port stats all
16/10/2020 16:47:33              dut.10.240.xxx.xx: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
16/10/2020 16:47:33              dut.10.240.xxx.xx: start
16/10/2020 16:47:33              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:47:37              dut.10.240.xxx.xx: port 0/queue 29: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - type=0x88a8 - length=62 - nb_segs=1 - RSS hash=0xf03a087d - RSS queue=0x1d - Protocol Extraction:[0x2017:0x8038],vlan,stag=1: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=0x1d
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

16/10/2020 16:47:37                TestFlexibleRxd: Test Case test_check_double_VLAN_fields_in_RXD_8021ad Result PASSED:
16/10/2020 16:47:37              dut.10.240.xxx.xx: quit
16/10/2020 16:47:38              dut.10.240.xxx.xx: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=29 -> TX Port= 0/Queue=29 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[12] 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[12] 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_8639464293958832479 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_18251163534657415106 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_17239096622573636966 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_18302557811318821979 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_11798297455282928325 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_7247298268459160699 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_845021143737255796 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_15283227463929638610 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_9696258759215669286 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_10227943003741850257 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_5937254439373522406 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_9440235175794055019 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_8921951521845256705 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_379377066447174377 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_9844245298981525980 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_14824895535391741399 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_13999626935807031949 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_5636900562486071091 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_12481927166177338131 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_3393455558590944361 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_13785953586120891184 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_14874223623700669385 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_17746687528708816043 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_7155006606629766435 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_5909738736473107695 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_10750490260436979666 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_6533371427814235188 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_11243867850686959163 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_14465559528817509194 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_16841644127767795475 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_4926671899368064471 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_5272438784668157722 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_14236902694877898984 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_8180390479685275969 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_12208035668408440557 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_2246924474041333752 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_18028303908103061413 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_4476645457610571375 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_15524463328794722578 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_16484669562855850831 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_10824844296823760732 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_5428370817912539215 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_14701998468356698507 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_3017220213559975526 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_9958642460149150319 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_6734801359267622637 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_3023283252004634310 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_15836399070131729342 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_8414472706584788728 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_9780392689031388936 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_11907455865615935466 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_7048268001325446921 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_1747213429379876585 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_5953337239263834638 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_4724589524366654350 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_7670564289268750634 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_14985518977397697420 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_10200998075978329295 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_17130569971456778342 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_2063726018642275136 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_14925826723062336265 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_13179733732526702227 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_14424152443118078622 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_6738246372993125433 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_4049859644055181854 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_6556828808215025416 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_8446376188611725040 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_311715361717021804 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_12385568870429167363 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_16671864860805804909 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_15953743007966136778 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_5201280535894430518 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_840350445163955101 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_12201281013405901671 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_9252134012215738644 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_16833858561044688021 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_3769090359350655056 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_6345179816904660228 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_9287478423786115286 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_13373613118630317915 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_17239440402536729105 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_3931219906246298847 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_3195360390212957378 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_1181294798024181826 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_11188886918439736970 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_6063390971473292917 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_5399241493328417409 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_11048938904999356057 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_7555014178269559915 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_16266359822009592485 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_15065041889344094155 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_2920480784363194349 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_11780762359165873891 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_8373949513602334981 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_9680742544362960572 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_7525487120019694120 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_10472473217230610980 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_2714354763697421556 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_16566073407443376903 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_3908984105665105560 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_16687025135941688119 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_17138422908359713431 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_9934877536768137999 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_4486447193257001718 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_18072019379505776931 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_14505531266055242828 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_16213953987652685044 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_1912243748034378128 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_3503062094337578866 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_4804940053876162730 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_8423170118166752648 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_11333462574579987891 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_3344556906810891057 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_65171700155112041 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_17870467592536960629 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_9824857431844280041 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_9211041813344121413 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_12836626325351074729 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_4069657916911529611 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_13978122678229549336 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_12428963512215785565 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_10109311687196854540 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_9604328479354285770 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_3046964242899842768 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_4802879431592658036 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_12079749008547195951 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_3149872243152754029 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_13967095466562882177 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_15162621218153209929 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_11888244689590399834 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_4685027811836869555 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_15509941338403641442 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:47:40              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:47:40                TestFlexibleRxd: Test Case test_check_ip_offset_of_ip Begin
16/10/2020 16:47:41              dut.10.240.xxx.xx: 
16/10/2020 16:47:41                         tester: 
16/10/2020 16:47:41              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
16/10/2020 16:47:42              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_11578810681126592876 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_13809154112175983753 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_6588493272523332998 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_14868216577327703623 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_14476386350711227617 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_13669758549264723825 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_975960923531978128 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_5020885008269278218 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_13069955154411978642 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_3805500777405831911 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_17370039529355842133 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_11366423117790825506 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_3929812206201409894 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_11931870371065436678 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_15768857448210076513 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_6125926458005519218 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_7214428372299177004 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_17679701366755283429 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_8183232199371927788 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_8587165611008634789 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_8056594510542049725 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_13457314674126859464 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_3792682818007292458 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_12902246388154282014 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_4526960422120540438 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_10632763530253900239 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_10442022006810696419 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_2595145920146106946 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_17574717424519646734 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_5032456001343442762 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_9915328181076687067 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_3276700163913385014 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_1710712844889343165 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_12996419530397609185 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_736426614820367518 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_17382269435386343443 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_2806264446100528964 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_3278292418225794711 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_17967685734156442083 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_8258012223815094316 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_15725468360688332270 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_413440485827261632 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_5404308709618613017 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_12085188417465782501 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_3913349320890625069 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_1166467046148347373 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_16174054264617817908 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_15660499148333133776 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_5688184050059823862 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_14837981540990526958 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_1868895509618910050 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_452945734462492057 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_2344667543325754271 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_8036460517917124302 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_17443233914127286799 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_3309757962580038487 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_4065794467672530527 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_11546585317116332398 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_11937001034126112356 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_1150406458784248145 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_7334311253915221388 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_15398210363816698976 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_18147446395738619163 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_8775723165632572321 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_11127604482502302645 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_6957829379482591268 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_3363600815557394416 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_4486452855622916937 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_10550293526994823043 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_11841119299970943096 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_1362823066185588868 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_14523364808175336016 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_17683747326874898993 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_6128118646408590204 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_2992567402340600959 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_17281450701199490483 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_17195293789516187957 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_16871031716303683048 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_887653696642802529 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_18415606764666023947 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_18371428574575773024 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_10529058818772065056 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_10484795782228358746 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_681594294284514750 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_11814688367591450093 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_2397557877040765196 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_4884238149344525067 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_7436751682584002436 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_15577327327344965765 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_14794435608477863627 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_6436396979129312846 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_9212046842097278119 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_4018209530996181761 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_10842036100832036762 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_15453994710908667978 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_4062655550579330668 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_6121636009950456951 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_1521901871815587107 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_17216069076341185088 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_3640420881593248520 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_9128871249673993612 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_15333332359892153283 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_14410301336417773889 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_11138166592074228918 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_7568517972155154407 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_14113980515335437554 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_11062360447774168902 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_4125076866959576009 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_1285670063181610532 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_7094179957076912512 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_595145673816601610 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_12593167382736758155 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_1834041981442094640 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_17006705733635407273 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_9017225991383690069 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_17384641348625437018 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_14093869075553857249 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_12810505369277224607 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_16295526965391874391 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_9529081015866957468 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_16738433508439506312 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_11484806622513270921 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_1545376146154628022 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_9670129812433254490 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_7419733592480489570 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_5877584068025423056 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_9105717826116003473 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_2880903400137356630 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_6970229745316319557 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_18360430000340744102 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_8650778836489083349 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_7483552503304244610 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:47:52              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:47:52              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:47:52              dut.10.240.xxx.xx: start
16/10/2020 16:47:52              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:47:56              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - type=0x8847 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=14 - 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_BAD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

16/10/2020 16:47:56                TestFlexibleRxd: Test Case test_check_ip_offset_of_ip Result FAILED: 'ip_offset value error, case test failed'
16/10/2020 16:47:56              dut.10.240.xxx.xx: quit
16/10/2020 16:47:57              dut.10.240.xxx.xx: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] 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[12] 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_13809154112175983753 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_6588493272523332998 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_14868216577327703623 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_14476386350711227617 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_13669758549264723825 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_975960923531978128 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_5020885008269278218 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_13069955154411978642 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_3805500777405831911 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_17370039529355842133 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_11366423117790825506 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_3929812206201409894 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_11931870371065436678 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_15768857448210076513 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_6125926458005519218 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_7214428372299177004 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_17679701366755283429 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_8183232199371927788 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_8587165611008634789 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_8056594510542049725 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_13457314674126859464 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_3792682818007292458 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_12902246388154282014 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_4526960422120540438 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_10632763530253900239 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_10442022006810696419 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_2595145920146106946 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_17574717424519646734 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_5032456001343442762 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_9915328181076687067 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_3276700163913385014 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_1710712844889343165 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_11578810681126592876 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_736426614820367518 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_17382269435386343443 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_2806264446100528964 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_3278292418225794711 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_17967685734156442083 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_8258012223815094316 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_15725468360688332270 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_413440485827261632 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_5404308709618613017 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_12085188417465782501 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_3913349320890625069 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_1166467046148347373 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_16174054264617817908 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_15660499148333133776 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_5688184050059823862 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_14837981540990526958 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_1868895509618910050 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_452945734462492057 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_2344667543325754271 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_8036460517917124302 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_17443233914127286799 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_3309757962580038487 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_4065794467672530527 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_11546585317116332398 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_11937001034126112356 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_1150406458784248145 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_7334311253915221388 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_15398210363816698976 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_18147446395738619163 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_8775723165632572321 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_11127604482502302645 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_6957829379482591268 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_12996419530397609185 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_4486452855622916937 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_10550293526994823043 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_11841119299970943096 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_1362823066185588868 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_14523364808175336016 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_17683747326874898993 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_6128118646408590204 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_2992567402340600959 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_17281450701199490483 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_17195293789516187957 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_16871031716303683048 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_887653696642802529 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_18415606764666023947 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_18371428574575773024 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_10529058818772065056 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_10484795782228358746 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_681594294284514750 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_11814688367591450093 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_2397557877040765196 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_4884238149344525067 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_7436751682584002436 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_15577327327344965765 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_14794435608477863627 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_6436396979129312846 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_9212046842097278119 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_4018209530996181761 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_10842036100832036762 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_15453994710908667978 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_4062655550579330668 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_6121636009950456951 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_1521901871815587107 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_17216069076341185088 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_3363600815557394416 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_9128871249673993612 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_15333332359892153283 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_14410301336417773889 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_11138166592074228918 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_7568517972155154407 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_14113980515335437554 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_11062360447774168902 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_4125076866959576009 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_1285670063181610532 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_7094179957076912512 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_595145673816601610 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_12593167382736758155 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_1834041981442094640 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_17006705733635407273 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_9017225991383690069 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_17384641348625437018 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_14093869075553857249 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_12810505369277224607 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_16295526965391874391 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_9529081015866957468 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_16738433508439506312 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_11484806622513270921 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_1545376146154628022 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_9670129812433254490 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_7419733592480489570 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_5877584068025423056 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_9105717826116003473 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_2880903400137356630 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_6970229745316319557 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_18360430000340744102 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_8650778836489083349 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_7483552503304244610 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_3640420881593248520 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:47:59              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:48:00                TestFlexibleRxd: Test Case test_check_ip_offset_with_2_vlan_tag Begin
16/10/2020 16:48:00              dut.10.240.xxx.xx: 
16/10/2020 16:48:00                         tester: 
16/10/2020 16:48:00              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
16/10/2020 16:48:02              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_5919906160277846287 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_14314779432181249180 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_13451759941433430250 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_5003661033426809318 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_633348817514798015 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_11890619601850987891 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_7446502412013070970 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_6360459789352278072 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_1394112609479215481 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_5958688134938173248 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_13968970922520336323 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_18083694179028275643 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_16395055241102643288 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_12804085256928829101 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_4685989473388242766 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_10807295928216816806 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_18402636102373449697 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_8682001363001600951 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_9505879682453126848 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_12280371129905500821 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_7287217292520118063 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_6941697926878134139 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_5683855945749395854 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_13648901606147944636 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_4889645047091613700 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_14474518327000581742 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_1010300430433883871 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_18273421746849584577 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_14236708957540786355 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_3133986402765284030 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_3800132400118745957 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_1515583870697293405 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_14417410193674018758 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_10466045299791246910 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_6506941246067023556 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_7552993713638511871 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_13139653655042427351 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_10127044033543325705 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_6026189605220201438 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_5976201518729718566 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_1517066013912694034 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_15729292340070026237 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_5331516515579139892 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_13448543170722659385 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_17640771711737541088 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_15682409133693852251 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_9630732037817082609 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_772528266982147264 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_16729891904478477279 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_6541598045822151609 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_7063382894639496580 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_9776219918516527906 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_7364524530821064377 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_9110452254187990295 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_18129655406871924374 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_1369863586276108832 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_10039267459577224198 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_12224537406167204204 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_211091158617474770 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_16098142176286440300 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_255370785093031056 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_2203694846727002820 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_17026279525924258650 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_15049924374926398050 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_2646900320347377869 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_9359497127756204961 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_8057221489198870433 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_16529197102323793591 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_7235187388085718505 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_1415236829232807106 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_3021807110228338477 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_1343470285129106813 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_7091587704155754151 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_6583941710855872249 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_2942161297433457779 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_10174169927451738901 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_13703426308010645300 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_14593571509917578277 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_13750429943937729947 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_5157222648849525855 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_14916534025119018017 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_1503115845826922008 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_16348712794314702255 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_6381661113599962567 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_8877463290201018420 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_14374952612420324618 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_10379947548647252107 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_2654350784860033284 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_7841480126862871798 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_13589801936914620628 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_2446336090546583680 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_660505549037821931 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_16533881571064169658 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_7821162405184896077 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_4812402246595502592 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_9221078393955696657 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_8046109760370423334 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_10395377467519905030 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_17757188000105465053 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_393216614886725275 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_9918089716571019302 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_1053242592063230983 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_9326867940071092000 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_14309792276327972375 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_17691671333728025549 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_7536392308624885736 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_734693461257956179 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_261896270386345805 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_2485792726813310852 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_16363670824162522266 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_6348902681009345389 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_15419201204466615151 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_3182472480650591932 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_1934936989313701358 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_17581753643493345163 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_1905803089049209220 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_4921132879089540500 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_12715991626705562323 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_11560384698551910123 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_658680115648630558 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_3958643331406212196 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_16897608323396488665 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_14319743980797847630 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_16596932153365245872 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_3734967272956591546 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_11965215075861925695 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_1260954726305974904 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_13287783287613214926 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_4683500237697533011 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_4356676912209004729 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_9563538624890825999 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_14746045124289974294 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:48:12              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:48:12              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:48:12              dut.10.240.xxx.xx: start
16/10/2020 16:48:12              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:48:15              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:48:19              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

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

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

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

Done.

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

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_14314779432181249180 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_13451759941433430250 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_5003661033426809318 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_633348817514798015 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_11890619601850987891 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_7446502412013070970 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_6360459789352278072 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_1394112609479215481 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_5958688134938173248 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_13968970922520336323 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_18083694179028275643 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_16395055241102643288 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_12804085256928829101 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_4685989473388242766 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_10807295928216816806 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_18402636102373449697 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_8682001363001600951 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_9505879682453126848 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_12280371129905500821 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_7287217292520118063 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_6941697926878134139 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_5683855945749395854 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_13648901606147944636 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_4889645047091613700 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_14474518327000581742 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_1010300430433883871 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_18273421746849584577 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_14236708957540786355 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_3133986402765284030 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_3800132400118745957 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_1515583870697293405 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_14417410193674018758 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_5919906160277846287 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_6506941246067023556 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_7552993713638511871 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_13139653655042427351 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_10127044033543325705 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_6026189605220201438 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_5976201518729718566 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_1517066013912694034 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_15729292340070026237 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_5331516515579139892 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_13448543170722659385 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_17640771711737541088 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_15682409133693852251 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_9630732037817082609 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_772528266982147264 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_16729891904478477279 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_6541598045822151609 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_7063382894639496580 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_9776219918516527906 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_7364524530821064377 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_9110452254187990295 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_18129655406871924374 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_1369863586276108832 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_10039267459577224198 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_12224537406167204204 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_211091158617474770 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_16098142176286440300 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_255370785093031056 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_2203694846727002820 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_17026279525924258650 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_15049924374926398050 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_2646900320347377869 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_9359497127756204961 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_10466045299791246910 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_16529197102323793591 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_7235187388085718505 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_1415236829232807106 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_3021807110228338477 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_1343470285129106813 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_7091587704155754151 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_6583941710855872249 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_2942161297433457779 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_10174169927451738901 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_13703426308010645300 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_14593571509917578277 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_13750429943937729947 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_5157222648849525855 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_14916534025119018017 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_1503115845826922008 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_16348712794314702255 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_6381661113599962567 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_8877463290201018420 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_14374952612420324618 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_10379947548647252107 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_2654350784860033284 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_7841480126862871798 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_13589801936914620628 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_2446336090546583680 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_660505549037821931 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_16533881571064169658 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_7821162405184896077 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_4812402246595502592 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_9221078393955696657 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_8046109760370423334 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_10395377467519905030 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_17757188000105465053 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_8057221489198870433 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_9918089716571019302 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_1053242592063230983 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_9326867940071092000 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_14309792276327972375 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_17691671333728025549 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_7536392308624885736 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_734693461257956179 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_261896270386345805 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_2485792726813310852 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_16363670824162522266 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_6348902681009345389 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_15419201204466615151 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_3182472480650591932 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_1934936989313701358 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_17581753643493345163 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_1905803089049209220 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_4921132879089540500 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_12715991626705562323 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_11560384698551910123 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_658680115648630558 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_3958643331406212196 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_16897608323396488665 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_14319743980797847630 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_16596932153365245872 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_3734967272956591546 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_11965215075861925695 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_1260954726305974904 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_13287783287613214926 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_4683500237697533011 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_4356676912209004729 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_9563538624890825999 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_14746045124289974294 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_393216614886725275 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:48:22              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:48:23                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS Begin
16/10/2020 16:48:23              dut.10.240.xxx.xx: 
16/10/2020 16:48:23                         tester: 
16/10/2020 16:48:23              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
16/10/2020 16:48:25              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_3855065130166693514 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_13492820063523461336 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_5600522333659025331 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_5711334736668647796 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_8141837448462233690 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_922715334720464454 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_14358895167674416331 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_3798025831444603558 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_16157914595467655282 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_9671354016664959808 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_11941942062251439395 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_1521106896467809389 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_13672972288856700001 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_6981870932837246903 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_10814881315935661272 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_13225339602007332803 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_12080996831226820762 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_4841691766383371589 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_7823576423522467441 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_3470149470239324682 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_7764373397707955053 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_2021432939267312284 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_7839371493305728846 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_1254144680022226457 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_10648313696388615984 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_466981111665397911 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_15144040488383779524 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_3103611511360211984 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_18427105176819927546 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_853681988267390008 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_10926885824221287078 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_6767926324044125130 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_10210830577190367417 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_7859294736622059306 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_9610882736768194184 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_11228365725695759476 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_2261043827811752280 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_2560856372468151386 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_15993297986503718457 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_14866908990208330864 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_17004088204349047352 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_5621840155070230023 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_4775185792806161238 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_11368335564712785318 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_4035526365220933857 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_9250838080644143490 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_4594453210291952902 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_803911637133206761 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_4544280419712561816 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_12541198478265161935 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_805651176471314875 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_547149460440803615 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_9300712882921687898 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_17006287325139398654 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_8896857723950533849 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_7275747893914354602 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_15211717534572905488 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_2777310697739583063 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_15502188591091054719 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_8485535189930936976 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_5894028714433397381 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_1398137499474082525 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_1355072126768067758 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_11940875004835699102 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_8813334261883579161 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_3277135252075727119 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_9437605966679599271 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_121184336198201903 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_16952914862042359672 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_905821957231702103 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_6264442109724040248 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_9139808437515962676 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_9962973408367724430 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_13008746780069635407 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_5990894691072746265 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_3993131469987241850 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_17279440563604279736 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_3836431796175170920 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_4192594977957525000 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_9619162765290566887 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_4334146185824148916 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_10261498286113104561 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_12187497526061014075 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_3169588025993150043 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_1939851127074695366 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_17422233836999926094 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_11386346958094253604 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_11820221288945910379 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_11890415447365606991 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_14354096383585932528 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_4185297330610472321 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_8976154970525814607 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_7334250793991972429 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_7008784391648686664 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_3608092679720342346 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_16055274651125593264 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_7320902303366600389 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_18245126744788543448 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_17746327452984597514 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_11824252504989224503 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_444916360277018169 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_6154812464528469467 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_4294601462782894997 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_8948502813579906076 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_13345802898006641929 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_2950793931248998980 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_16219142661347207408 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_12319919125190245713 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_2775864228269525616 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_4792647957969419450 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_11270703107785225896 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_2257932865057461948 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_17003642743509746966 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_13743779161642477094 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_6406277542213974487 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_4166793904051563517 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_15788355070851998751 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_17722253080686087616 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_1843000338622520502 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_12445519381387847622 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_2437708403528467517 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_12261576188335722322 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_15584853854492040551 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_4304312841419616042 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_11241583572156960383 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_589971922576064585 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_4621659309477279195 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_10938518274931960085 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_2729403455275208878 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_340553218583723416 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_12132492645849517909 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_4102579984039462176 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:48:35              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:48:35              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:48:35              dut.10.240.xxx.xx: start
16/10/2020 16:48:35              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:48:38              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - type=0x8847 - length=60 - nb_segs=1 - Protocol Offset:ip_offset=14 - 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_BAD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

16/10/2020 16:48:38                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS Result FAILED: 'ip_offset value error, case test failed'
16/10/2020 16:48:38              dut.10.240.xxx.xx: quit
16/10/2020 16:48:39              dut.10.240.xxx.xx: 
Telling cores to stop...
Waiting for lcores to finish...
ice_update_vsi_stats(): ************** VSI[12] 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[12] 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_13492820063523461336 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_5600522333659025331 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_5711334736668647796 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_8141837448462233690 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_922715334720464454 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_14358895167674416331 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_3798025831444603558 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_16157914595467655282 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_9671354016664959808 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_11941942062251439395 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_1521106896467809389 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_13672972288856700001 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_6981870932837246903 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_10814881315935661272 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_13225339602007332803 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_12080996831226820762 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_4841691766383371589 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_7823576423522467441 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_3470149470239324682 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_7764373397707955053 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_2021432939267312284 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_7839371493305728846 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_1254144680022226457 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_10648313696388615984 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_466981111665397911 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_15144040488383779524 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_3103611511360211984 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_18427105176819927546 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_853681988267390008 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_10926885824221287078 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_6767926324044125130 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_10210830577190367417 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_3855065130166693514 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_9610882736768194184 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_11228365725695759476 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_2261043827811752280 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_2560856372468151386 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_15993297986503718457 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_14866908990208330864 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_17004088204349047352 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_5621840155070230023 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_4775185792806161238 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_11368335564712785318 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_4035526365220933857 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_9250838080644143490 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_4594453210291952902 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_803911637133206761 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_4544280419712561816 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_12541198478265161935 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_805651176471314875 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_547149460440803615 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_9300712882921687898 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_17006287325139398654 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_8896857723950533849 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_7275747893914354602 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_15211717534572905488 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_2777310697739583063 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_15502188591091054719 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_8485535189930936976 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_5894028714433397381 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_1398137499474082525 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_1355072126768067758 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_11940875004835699102 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_8813334261883579161 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_3277135252075727119 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_7859294736622059306 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_121184336198201903 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_16952914862042359672 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_905821957231702103 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_6264442109724040248 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_9139808437515962676 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_9962973408367724430 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_13008746780069635407 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_5990894691072746265 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_3993131469987241850 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_17279440563604279736 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_3836431796175170920 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_4192594977957525000 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_9619162765290566887 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_4334146185824148916 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_10261498286113104561 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_12187497526061014075 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_3169588025993150043 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_1939851127074695366 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_17422233836999926094 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_11386346958094253604 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_11820221288945910379 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_11890415447365606991 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_14354096383585932528 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_4185297330610472321 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_8976154970525814607 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_7334250793991972429 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_7008784391648686664 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_3608092679720342346 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_16055274651125593264 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_7320902303366600389 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_18245126744788543448 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_17746327452984597514 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_9437605966679599271 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_444916360277018169 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_6154812464528469467 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_4294601462782894997 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_8948502813579906076 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_13345802898006641929 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_2950793931248998980 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_16219142661347207408 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_12319919125190245713 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_2775864228269525616 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_4792647957969419450 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_11270703107785225896 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_2257932865057461948 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_17003642743509746966 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_13743779161642477094 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_6406277542213974487 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_4166793904051563517 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_15788355070851998751 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_17722253080686087616 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_1843000338622520502 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_12445519381387847622 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_2437708403528467517 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_12261576188335722322 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_15584853854492040551 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_4304312841419616042 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_11241583572156960383 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_589971922576064585 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_4621659309477279195 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_10938518274931960085 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_2729403455275208878 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_340553218583723416 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_12132492645849517909 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_4102579984039462176 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_11824252504989224503 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:48:41              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:48:42                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_2_vlan_tag Begin
16/10/2020 16:48:42              dut.10.240.xxx.xx: 
16/10/2020 16:48:42                         tester: 
16/10/2020 16:48:42              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
16/10/2020 16:48:44              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_5260951172859823524 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_7085895283125788950 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_17414634967387798331 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_13298913485418878783 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_5689908607688790358 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_7690941388722068554 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_11637850712167950936 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_11845857274292573676 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_16533510219242766637 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_16935430349768104331 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_3419110984051486351 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_9934653600515224519 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_4769961151797349934 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_7847188018909885817 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_15080855109239634431 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_291580334424279334 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_7847376783231372695 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_6219868944362130628 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_5714374413879655650 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_15444078310617561711 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_4569119506003318085 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_15284774872318960609 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_5957654113124809643 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_17268356575409631435 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_10197274056550528805 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_14937218645326187483 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_6052740586174822992 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_9661367630435402383 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_10073970813605810431 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_15529599652459144889 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_17910286869453265346 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_13789196297560204022 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_14891692170501158463 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_1002418624281434894 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_16267831237524119383 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_9743220390738407109 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_6178426931583461594 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_14148135949310445908 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_6553063881831508114 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_4741717724946518183 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_11748405688597895524 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_6330063783610591884 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_3688095424726025278 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_10932490821959455976 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_13951220459033942768 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_17065995171510319351 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_4612200725979245565 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_8515608699454103590 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_5658348503439217278 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_5715424699206963150 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_11607882325073962244 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_7252530837287985988 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_6770749562967662194 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_1366902324163273261 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_8114630353602300787 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_5186175093958396933 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_18281486457151733131 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_9062005414791131910 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_13211562699644194087 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_13015931948723544549 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_7318185344825600457 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_6961885122210235659 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_12608151913992376797 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_16591056776730511481 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_353887007673186806 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_18393179419969867268 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_15537630384394192524 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_16850074194299330679 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_13130776162292795825 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_15649515523163256025 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_643644281473007564 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_7979969888859345138 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_9658308563991887264 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_15093484245924662997 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_13140228501314366899 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_13452052017281540577 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_1567610382568399569 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_7550523365861410974 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_16308616577168959255 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_6975943629386009551 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_17251852709330663427 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_1451201138343641768 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_11155309726501449873 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_121892969509740186 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_8289235674808360690 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_2164227394204488543 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_4468480559901938080 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_2875436850782175474 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_7535538163277119937 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_10479083625166835151 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_1315247167681217327 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_3947284139314547224 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_15374793416962296668 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_12063887432400498960 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_12210871121990009478 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_6088784846118193154 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_14806113633414420634 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_13400832074663396768 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_8602474691124305173 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_11458370330653578818 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_1478381001212537565 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_14775301300273498652 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_13349052713980608117 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_12096400547249081073 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_453387347643180505 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_13409914587124841968 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_1831042791443498350 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_5286250542994246631 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_18353931306016727184 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_15962411510164048699 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_5687853214234493651 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_10700464723962994951 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_5328075729989734294 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_12730094223073912671 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_328695570746620091 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_14856105668140153016 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_16161076568972058041 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_2849353046942175857 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_8209104326470675498 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_18146509161515033675 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_4395934969377700999 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_5561575090046153066 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_18041100410874894662 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_7796168618187830160 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_4855403370508856763 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_6351636553611635467 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_2581424569565519247 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_13104040699265288560 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_16749466131662003009 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_15987475885936155636 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_2541100767230888035 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_12404910230064988396 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:48:54              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:48:54              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:48:54              dut.10.240.xxx.xx: start
16/10/2020 16:48:54              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:48:58              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:49:01              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:49:05              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:49:09              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:49:12              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:49:16              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:49:19              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:49:23              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:49:27              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:49:30              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

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

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

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

Done.

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

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_7085895283125788950 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_17414634967387798331 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_13298913485418878783 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_5689908607688790358 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_7690941388722068554 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_11637850712167950936 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_11845857274292573676 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_16533510219242766637 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_16935430349768104331 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_3419110984051486351 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_9934653600515224519 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_4769961151797349934 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_7847188018909885817 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_15080855109239634431 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_291580334424279334 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_7847376783231372695 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_6219868944362130628 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_5714374413879655650 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_15444078310617561711 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_4569119506003318085 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_15284774872318960609 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_5957654113124809643 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_17268356575409631435 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_10197274056550528805 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_14937218645326187483 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_6052740586174822992 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_9661367630435402383 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_10073970813605810431 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_15529599652459144889 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_17910286869453265346 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_13789196297560204022 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_14891692170501158463 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_5260951172859823524 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_16267831237524119383 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_9743220390738407109 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_6178426931583461594 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_14148135949310445908 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_6553063881831508114 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_4741717724946518183 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_11748405688597895524 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_6330063783610591884 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_3688095424726025278 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_10932490821959455976 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_13951220459033942768 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_17065995171510319351 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_4612200725979245565 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_8515608699454103590 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_5658348503439217278 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_5715424699206963150 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_11607882325073962244 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_7252530837287985988 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_6770749562967662194 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_1366902324163273261 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_8114630353602300787 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_5186175093958396933 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_18281486457151733131 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_9062005414791131910 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_13211562699644194087 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_13015931948723544549 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_7318185344825600457 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_6961885122210235659 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_12608151913992376797 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_16591056776730511481 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_353887007673186806 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_18393179419969867268 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_1002418624281434894 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_16850074194299330679 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_13130776162292795825 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_15649515523163256025 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_643644281473007564 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_7979969888859345138 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_9658308563991887264 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_15093484245924662997 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_13140228501314366899 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_13452052017281540577 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_1567610382568399569 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_7550523365861410974 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_16308616577168959255 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_6975943629386009551 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_17251852709330663427 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_1451201138343641768 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_11155309726501449873 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_121892969509740186 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_8289235674808360690 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_2164227394204488543 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_4468480559901938080 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_2875436850782175474 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_7535538163277119937 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_10479083625166835151 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_1315247167681217327 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_3947284139314547224 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_15374793416962296668 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_12063887432400498960 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_12210871121990009478 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_6088784846118193154 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_14806113633414420634 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_13400832074663396768 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_8602474691124305173 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_15537630384394192524 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_1478381001212537565 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_14775301300273498652 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_13349052713980608117 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_12096400547249081073 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_453387347643180505 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_13409914587124841968 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_1831042791443498350 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_5286250542994246631 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_18353931306016727184 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_15962411510164048699 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_5687853214234493651 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_10700464723962994951 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_5328075729989734294 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_12730094223073912671 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_328695570746620091 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_14856105668140153016 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_16161076568972058041 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_2849353046942175857 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_8209104326470675498 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_18146509161515033675 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_4395934969377700999 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_5561575090046153066 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_18041100410874894662 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_7796168618187830160 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_4855403370508856763 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_6351636553611635467 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_2581424569565519247 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_13104040699265288560 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_16749466131662003009 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_15987475885936155636 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_2541100767230888035 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_12404910230064988396 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_11458370330653578818 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:49:33              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:49:34                TestFlexibleRxd: Test Case test_check_ip_offset_with_multi_MPLS_with_vlan_tag Begin
16/10/2020 16:49:34              dut.10.240.xxx.xx: 
16/10/2020 16:49:34                         tester: 
16/10/2020 16:49:34              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
16/10/2020 16:49:36              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_17889159409212000126 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_8740651133970355908 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_11870077754082895295 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_16240032940196179358 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_16924608882216136671 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_17831023973359973538 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_7966974933432907615 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_9445191992370513292 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_7652365340984724527 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_604960858847792522 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_11024751782156783142 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_750989526998385618 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_9530053281331599711 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_6351696938633304404 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_4702126546771424501 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_16450795072343255897 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_11494074859470428473 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_13349413285356974376 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_10296347115950878111 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_3397941503251021553 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_15926031146697078816 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_6372625988338126213 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_10205887473666283682 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_12249534179538070319 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_14197692151138442475 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_16562541800102511710 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_16549027405411975391 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_17249588666511481053 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_1740465673556323248 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_15546100615956165716 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_9512893094799212171 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_6531813682161824592 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_1248359848098375011 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_16775719523362177497 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_16448897403104838799 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_6277700450320273491 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_15582515048127018954 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_15594661498469414092 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_7786827268860083334 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_8488073622362845545 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_4427058011454932489 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_9954312312744165260 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_10641581865497906295 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_15551262450933715540 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_13050400223987014190 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_8170770174678914537 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_3259939730012641937 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_3505217024725477587 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_5828328113457257632 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_17379734719077503428 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_1857071093307116367 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_5048775541343298408 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_15389713170602734775 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_16419170520124531158 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_17447672972553626830 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_14450469458621567466 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_5847359987456898949 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_13791634582927295879 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_9805945136561529602 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_9528153477792217647 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_14407765310518263427 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_18083621870517575498 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_17047946925096801392 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_2936245577375048072 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_2937965729252280595 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_3597192878006525907 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_16278894333345175029 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_13413730003042135150 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_17361733404935321530 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_4148236741421399524 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_6395135796873250018 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_5777961173346089567 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_11588262111151973623 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_12065452154673604798 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_9189204421950567243 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_16639204378170573257 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_7090346828010568576 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_17584598542548516251 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_15523509365882934406 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_9513790960504226389 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_12797253715350183172 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_15848516949104388101 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_884500369523529741 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_17369043505429717609 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_13300133816156349838 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_9524209492764212518 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_6265811672085612859 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_12550875611897859563 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_11373963859239783298 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_12872362525124778740 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_15433286427854199966 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_8684311079478761590 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_16455072744549672893 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_9284838422835503046 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_2863048580975608625 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_974459797859072950 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_1369622975993041932 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_10883385059210925668 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_12278726829398356707 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_11001430430533090170 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_5801828765500845632 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_3394472675486113732 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_16831229542119667598 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_16500758693062664815 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_14378846573458519493 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_9488901202854373061 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_10121411132757359576 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_8108307341135106204 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_3784411396948627839 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_10756456289506322036 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_4116349092672157175 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_9451064247624734160 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_17336284839485824747 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_2783668015133406923 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_16577929450545618783 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_10577509561977698764 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_16697256717314596946 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_15470502495280678754 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_3460568145392624361 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_3259481346527192129 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_1062774909566626843 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_17317720964346196821 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_13473790334354680405 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_8451473338811769408 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_9013350499740249242 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_17002668446992581285 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_4459893171799973068 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_7849591604522285337 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_6003265086049129521 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_7735076303567391584 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_13877449532107760439 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_12908346877993461732 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:49:46              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:49:46              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:49:46              dut.10.240.xxx.xx: start
16/10/2020 16:49:46              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:49:49              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:49:53              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:49:57              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:50:00              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:50:04              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:50:08              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:50:11              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:50:15              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:50:18              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:50:22              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

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

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

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

Done.

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

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_8740651133970355908 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_11870077754082895295 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_16240032940196179358 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_16924608882216136671 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_17831023973359973538 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_7966974933432907615 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_9445191992370513292 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_7652365340984724527 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_604960858847792522 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_11024751782156783142 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_750989526998385618 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_9530053281331599711 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_6351696938633304404 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_4702126546771424501 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_16450795072343255897 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_11494074859470428473 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_13349413285356974376 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_10296347115950878111 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_3397941503251021553 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_15926031146697078816 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_6372625988338126213 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_10205887473666283682 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_12249534179538070319 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_14197692151138442475 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_16562541800102511710 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_16549027405411975391 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_17249588666511481053 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_1740465673556323248 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_15546100615956165716 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_9512893094799212171 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_6531813682161824592 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_1248359848098375011 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_17889159409212000126 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_16448897403104838799 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_6277700450320273491 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_15582515048127018954 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_15594661498469414092 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_7786827268860083334 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_8488073622362845545 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_4427058011454932489 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_9954312312744165260 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_10641581865497906295 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_15551262450933715540 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_13050400223987014190 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_8170770174678914537 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_3259939730012641937 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_3505217024725477587 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_5828328113457257632 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_17379734719077503428 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_1857071093307116367 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_5048775541343298408 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_15389713170602734775 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_16419170520124531158 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_17447672972553626830 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_14450469458621567466 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_5847359987456898949 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_13791634582927295879 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_9805945136561529602 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_9528153477792217647 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_14407765310518263427 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_18083621870517575498 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_17047946925096801392 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_2936245577375048072 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_2937965729252280595 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_3597192878006525907 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_16775719523362177497 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_13413730003042135150 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_17361733404935321530 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_4148236741421399524 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_6395135796873250018 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_5777961173346089567 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_11588262111151973623 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_12065452154673604798 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_9189204421950567243 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_16639204378170573257 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_7090346828010568576 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_17584598542548516251 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_15523509365882934406 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_9513790960504226389 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_12797253715350183172 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_15848516949104388101 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_884500369523529741 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_17369043505429717609 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_13300133816156349838 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_9524209492764212518 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_6265811672085612859 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_12550875611897859563 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_11373963859239783298 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_12872362525124778740 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_15433286427854199966 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_8684311079478761590 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_16455072744549672893 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_9284838422835503046 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_2863048580975608625 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_974459797859072950 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_1369622975993041932 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_10883385059210925668 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_12278726829398356707 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_16278894333345175029 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_5801828765500845632 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_3394472675486113732 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_16831229542119667598 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_16500758693062664815 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_14378846573458519493 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_9488901202854373061 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_10121411132757359576 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_8108307341135106204 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_3784411396948627839 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_10756456289506322036 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_4116349092672157175 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_9451064247624734160 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_17336284839485824747 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_2783668015133406923 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_16577929450545618783 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_10577509561977698764 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_16697256717314596946 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_15470502495280678754 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_3460568145392624361 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_3259481346527192129 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_1062774909566626843 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_17317720964346196821 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_13473790334354680405 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_8451473338811769408 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_9013350499740249242 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_17002668446992581285 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_4459893171799973068 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_7849591604522285337 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_6003265086049129521 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_7735076303567391584 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_13877449532107760439 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_12908346877993461732 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_11001430430533090170 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:50:25              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:50:26                TestFlexibleRxd: Test Case test_check_ip_offset_with_vlan Begin
16/10/2020 16:50:26              dut.10.240.xxx.xx: 
16/10/2020 16:50:26                         tester: 
16/10/2020 16:50:26              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i  --portmask=0x1 --nb-cores=2
16/10/2020 16:50:28              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_16555579860812310896 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_12075314513550297665 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_10152447708257109377 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_3424173133717486688 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_489382881710245923 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_13853981541540476316 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_8030622922425694164 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_117366420674920109 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_539201560041525065 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_16647461992286340627 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_12184219786313810937 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_3243245940595627454 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_6567041709839685063 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_15271267629062323681 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_13748368677376424937 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_7092654650738011440 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_12390256332926036661 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_16942115256512491604 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_14417468333389027244 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_2723048687653373163 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_1037407766348997173 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_1522322813519003122 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_15340855399502009419 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_2108260002720289614 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_15349310184133672089 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_3131177679410321150 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_6776892530935332461 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_2966470864295296063 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_8779168530888562186 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_17529269121736060493 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_3454465790931298427 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_2537057875429189567 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_13256582585807458131 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_3631904568991244724 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_10085380002060604507 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_5844809534125269046 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_17510909751814185394 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_12398154417181199216 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_1583018241756434295 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_8256826494632333039 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_6632374552808160099 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_13725681965221054227 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_380512750412370246 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_17136276753156001447 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_7404574777707555650 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_10939431587103547874 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_15433344993186400875 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_14503078117096382976 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_12539516032718099692 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_18402314441249627506 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_4749900518869087477 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_836400767928829715 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_6946153901572330583 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_2571974769093013432 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_12527617012170193679 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_10505953015305944622 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_14130252504686274400 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_14236289232993971986 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_11371405696957983050 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_12441720959943387475 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_5005205115724765502 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_255039546778036743 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_2766938687821146455 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_17326341604330259537 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_16707293602731184552 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_16728311425691713069 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_17747692469929006340 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_7472480758074311031 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_4022166460361802726 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_18231964337075159996 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_9403721539727491452 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_10976828695763334684 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_18191806543710167490 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_17841617457331004913 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_378720564747224721 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_3032321357448058228 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_7423649712274818357 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_18121461986703898691 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_1443146736819250135 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_941621992125491410 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_3380232652819939740 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_9215856584292006633 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_314525250131597018 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_1546102612382175836 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_15844601613690835511 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_22477182012890059 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_643777656879394064 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_4701947148870060373 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_4636543353499694882 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_9278835091416191112 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_9986473220828076329 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_7897175093859450701 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_635280307205680098 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_14740193117644282306 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_3677187924614586533 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_17920598460538126718 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_6186791681640821694 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_2757843719844229793 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_11552676762159674518 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_3517763467834249555 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_5350072006324940251 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_7310049082492470965 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_3157537436578959370 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_16037195323100241688 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_15475518166360319669 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_17506299642855772375 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_12650938993146500007 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_14069506731090759493 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_11509034302379842132 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_7815401025780642436 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_7600958175558834910 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_6849280092236291967 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_9981117857283814394 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_15225786873197708934 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_1413040120915324932 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_2463847599594342060 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_12915506995595149884 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_239865725874124433 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_9818088170753325038 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_16060587501089821717 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_16089773285371191491 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_16419904628744002369 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_12211456524640086234 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_15136071916920500027 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_4383584889440275598 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_15128988338328471639 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_7387859408209418353 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_5613695577822950046 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_13847467676130572364 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_17344026023996577549 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_6444221918674919858 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_17530571176620115496 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 25
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:50:38              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:50:38              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:50:38              dut.10.240.xxx.xx: start
16/10/2020 16:50:38              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:50:41              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:50:45              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

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

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

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

Done.

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

Shutting down port 0...
Closing ports...
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
_ice_tx_queue_release_mbufs(): Pointer to txq or sw_ring is NULL
_ice_rx_queue_release_mbufs(): Pointer to sw_ring is NULL
ice_free_queues():  >>
ice_free_dma_mem(): memzone ice_dma_12075314513550297665 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_10152447708257109377 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_3424173133717486688 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_489382881710245923 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_13853981541540476316 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_8030622922425694164 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_117366420674920109 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_539201560041525065 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_16647461992286340627 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_12184219786313810937 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_3243245940595627454 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_6567041709839685063 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_15271267629062323681 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_13748368677376424937 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_7092654650738011440 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_12390256332926036661 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_16942115256512491604 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_14417468333389027244 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_2723048687653373163 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_1037407766348997173 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_1522322813519003122 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_15340855399502009419 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_2108260002720289614 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_15349310184133672089 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_3131177679410321150 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_6776892530935332461 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_2966470864295296063 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_8779168530888562186 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_17529269121736060493 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_3454465790931298427 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_2537057875429189567 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_13256582585807458131 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_16555579860812310896 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_10085380002060604507 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_5844809534125269046 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_17510909751814185394 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_12398154417181199216 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_1583018241756434295 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_8256826494632333039 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_6632374552808160099 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_13725681965221054227 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_380512750412370246 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_17136276753156001447 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_7404574777707555650 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_10939431587103547874 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_15433344993186400875 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_14503078117096382976 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_12539516032718099692 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_18402314441249627506 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_4749900518869087477 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_836400767928829715 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_6946153901572330583 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_2571974769093013432 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_12527617012170193679 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_10505953015305944622 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_14130252504686274400 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_14236289232993971986 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_11371405696957983050 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_12441720959943387475 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_5005205115724765502 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_255039546778036743 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_2766938687821146455 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_17326341604330259537 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_16707293602731184552 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_16728311425691713069 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_3631904568991244724 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_7472480758074311031 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_4022166460361802726 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_18231964337075159996 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_9403721539727491452 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_10976828695763334684 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_18191806543710167490 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_17841617457331004913 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_378720564747224721 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_3032321357448058228 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_7423649712274818357 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_18121461986703898691 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_1443146736819250135 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_941621992125491410 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_3380232652819939740 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_9215856584292006633 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_314525250131597018 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_1546102612382175836 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_15844601613690835511 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_22477182012890059 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_643777656879394064 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_4701947148870060373 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_4636543353499694882 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_9278835091416191112 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_9986473220828076329 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_7897175093859450701 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_635280307205680098 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_14740193117644282306 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_3677187924614586533 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_17920598460538126718 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_6186791681640821694 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_2757843719844229793 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_11552676762159674518 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_17747692469929006340 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_5350072006324940251 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_7310049082492470965 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_3157537436578959370 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_16037195323100241688 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_15475518166360319669 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_17506299642855772375 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_12650938993146500007 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_14069506731090759493 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_11509034302379842132 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_7815401025780642436 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_7600958175558834910 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_6849280092236291967 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_9981117857283814394 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_15225786873197708934 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_1413040120915324932 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_2463847599594342060 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_12915506995595149884 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_239865725874124433 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_9818088170753325038 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_16060587501089821717 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_16089773285371191491 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_16419904628744002369 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_12211456524640086234 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_15136071916920500027 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_4383584889440275598 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_15128988338328471639 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_7387859408209418353 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_5613695577822950046 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_13847467676130572364 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_17344026023996577549 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_6444221918674919858 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_17530571176620115496 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_3517763467834249555 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:50:48              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:50:49                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021Q Begin
16/10/2020 16:50:49              dut.10.240.xxx.xx: 
16/10/2020 16:50:49                         tester: 
16/10/2020 16:50:49              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
16/10/2020 16:50:51              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_10511679963190781232 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_14072036493194141256 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_2656748837086626711 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_14895180502380733606 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_12172546248812970079 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_7703014198783324118 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_9319687841505515334 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_17371270613271976260 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_15286599645940937952 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_16744431967047317374 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_9771373736918562779 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_9636615912098507187 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_6492527446229822177 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_13282169674397236548 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_5510752618565356101 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_10252335812686689183 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_7900528870565303409 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_4527803898144486418 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_10787628536393888173 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_13625967108234834502 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_15737976159737395877 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_17710055570889627795 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_11990852766196083044 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_6887887299160501724 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_2702485994536920115 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_10613885134003510077 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_10849780047043504622 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_12652118385368242202 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_4628814411450311642 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_5185324717948159424 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_13816936566175521854 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_10504207002975308239 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_8662070338295768397 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_8629015565222610298 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_6470689483250860725 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_18068845670847527917 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_1992063484582196811 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_9866333100942585933 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_12871976464005748595 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_1439264262829156085 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_9060491858816355964 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_17616402263758090554 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_10111885419423453086 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_12496785394810110735 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_13341303473134537580 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_520946359424520765 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_1054608594422662671 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_1479897495262691768 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_9303669381170860797 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_16330489906382698934 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_15973157585849956590 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_15495080172527685881 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_6447336745415672056 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_15765871085192606653 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_18269271141905172835 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_16493926535309222469 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_1137406594274374985 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_7982345897797277743 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_18282373022990152934 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_510230949532747185 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_15694231838905421286 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_15242974005517054487 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_17475106161756012533 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_11453569993001407974 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_12163288999622218401 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_14477580919836374329 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_12524405920318161286 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_2125168428390353685 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_14108171820681316767 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_325150695657349445 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_840275119848157102 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_11818135926572797186 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_5077782997444100251 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_13903585246200703765 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_18342457234378158583 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_16522093464180020281 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_4491797747395267948 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_3223589788280017484 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_15472507740386512936 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_9004028150085844236 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_4676977377723691239 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_5275497884237943107 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_2975301882151406211 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_4566180033629677913 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_3103919185429354065 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_15316209204907524533 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_11385388889804792584 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_13431904447026265854 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_428907703793308573 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_14925276591898851766 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_17171586602777495880 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_8934890565494444147 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_17296094573714399757 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_1256763917120694650 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_7794545313772174135 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_545190420914762092 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_18037751948653507094 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_1484410420138899708 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_3311485272546726741 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_18444662738596660771 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_4771521287958300820 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_2699145632627254877 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_17932869055636646649 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_13805335251093601609 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_1044117425635371514 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_3052085656356042096 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_6097154642479826441 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_10028778034634581454 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_6598773735818790078 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_3563145642700431408 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_16015115131068594194 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_10421688719060310132 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_7194717298598279589 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_14529595316527319139 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_4428271490239728674 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_277715016970144365 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_4978628583773949937 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_5335442438190181237 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_4016181936069838 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_6817537704070003288 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_2280083384885249076 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_2927219844464813488 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_12811760112352798292 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_11162395267378283215 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_16337519945492845068 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_12451159409099309920 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_8786501335547708188 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_18252915343469613612 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_12016317764084876579 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_7461546483862219912 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_16840020878378605197 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_6182399427855178440 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 17
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
__vsi_queues_bind_intr(): queue 2 is binding to vect 1
__vsi_queues_bind_intr(): queue 3 is binding to vect 1
__vsi_queues_bind_intr(): queue 4 is binding to vect 1
__vsi_queues_bind_intr(): queue 5 is binding to vect 1
__vsi_queues_bind_intr(): queue 6 is binding to vect 1
__vsi_queues_bind_intr(): queue 7 is binding to vect 1
__vsi_queues_bind_intr(): queue 8 is binding to vect 1
__vsi_queues_bind_intr(): queue 9 is binding to vect 1
__vsi_queues_bind_intr(): queue 10 is binding to vect 1
__vsi_queues_bind_intr(): queue 11 is binding to vect 1
__vsi_queues_bind_intr(): queue 12 is binding to vect 1
__vsi_queues_bind_intr(): queue 13 is binding to vect 1
__vsi_queues_bind_intr(): queue 14 is binding to vect 1
__vsi_queues_bind_intr(): queue 15 is binding to vect 1
__vsi_queues_bind_intr(): queue 16 is binding to vect 1
__vsi_queues_bind_intr(): queue 17 is binding to vect 1
__vsi_queues_bind_intr(): queue 18 is binding to vect 1
__vsi_queues_bind_intr(): queue 19 is binding to vect 1
__vsi_queues_bind_intr(): queue 20 is binding to vect 1
__vsi_queues_bind_intr(): queue 21 is binding to vect 1
__vsi_queues_bind_intr(): queue 22 is binding to vect 1
__vsi_queues_bind_intr(): queue 23 is binding to vect 1
__vsi_queues_bind_intr(): queue 24 is binding to vect 1
__vsi_queues_bind_intr(): queue 25 is binding to vect 1
__vsi_queues_bind_intr(): queue 26 is binding to vect 1
__vsi_queues_bind_intr(): queue 27 is binding to vect 1
__vsi_queues_bind_intr(): queue 28 is binding to vect 1
__vsi_queues_bind_intr(): queue 29 is binding to vect 1
__vsi_queues_bind_intr(): queue 30 is binding to vect 1
__vsi_queues_bind_intr(): queue 31 is binding to vect 1
__vsi_queues_bind_intr(): queue 32 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:51:01              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:51:01              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:51:01              dut.10.240.xxx.xx: set fwd io
16/10/2020 16:51:01              dut.10.240.xxx.xx: 
Set io packet forwarding mode
16/10/2020 16:51:01              dut.10.240.xxx.xx: set promisc all off
16/10/2020 16:51:01              dut.10.240.xxx.xx: 
16/10/2020 16:51:01              dut.10.240.xxx.xx: clear port stats all
16/10/2020 16:51:01              dut.10.240.xxx.xx: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
16/10/2020 16:51:01              dut.10.240.xxx.xx: start
16/10/2020 16:51:01              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:51:04              dut.10.240.xxx.xx: port 0/queue 22: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x6f9cbf36 - RSS queue=0x16 - 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=0x16
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

16/10/2020 16:51:04                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021Q Result PASSED:
16/10/2020 16:51:04              dut.10.240.xxx.xx: quit
16/10/2020 16:51:06              dut.10.240.xxx.xx: 
Telling cores to stop...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue=22 -> TX Port= 0/Queue=22 -------
  RX-packets: 1              TX-packets: 1              TX-dropped: 0             
ice_update_vsi_stats(): ************** VSI[12] 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[12] 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_14072036493194141256 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_2656748837086626711 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_14895180502380733606 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_12172546248812970079 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_7703014198783324118 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_9319687841505515334 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_17371270613271976260 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_15286599645940937952 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_16744431967047317374 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_9771373736918562779 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_9636615912098507187 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_6492527446229822177 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_13282169674397236548 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_5510752618565356101 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_10252335812686689183 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_7900528870565303409 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_4527803898144486418 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_10787628536393888173 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_13625967108234834502 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_15737976159737395877 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_17710055570889627795 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_11990852766196083044 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_6887887299160501724 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_2702485994536920115 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_10613885134003510077 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_10849780047043504622 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_12652118385368242202 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_4628814411450311642 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_5185324717948159424 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_13816936566175521854 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_10504207002975308239 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_8662070338295768397 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_10511679963190781232 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_6470689483250860725 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_18068845670847527917 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_1992063484582196811 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_9866333100942585933 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_12871976464005748595 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_1439264262829156085 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_9060491858816355964 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_17616402263758090554 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_10111885419423453086 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_12496785394810110735 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_13341303473134537580 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_520946359424520765 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_1054608594422662671 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_1479897495262691768 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_9303669381170860797 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_16330489906382698934 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_15973157585849956590 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_15495080172527685881 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_6447336745415672056 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_15765871085192606653 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_18269271141905172835 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_16493926535309222469 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_1137406594274374985 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_7982345897797277743 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_18282373022990152934 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_510230949532747185 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_15694231838905421286 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_15242974005517054487 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_17475106161756012533 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_11453569993001407974 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_12163288999622218401 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_14477580919836374329 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_8629015565222610298 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_2125168428390353685 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_14108171820681316767 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_325150695657349445 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_840275119848157102 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_11818135926572797186 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_5077782997444100251 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_13903585246200703765 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_18342457234378158583 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_16522093464180020281 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_4491797747395267948 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_3223589788280017484 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_15472507740386512936 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_9004028150085844236 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_4676977377723691239 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_5275497884237943107 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_2975301882151406211 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_4566180033629677913 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_3103919185429354065 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_15316209204907524533 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_11385388889804792584 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_13431904447026265854 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_428907703793308573 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_14925276591898851766 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_17171586602777495880 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_8934890565494444147 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_17296094573714399757 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_1256763917120694650 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_7794545313772174135 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_545190420914762092 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_18037751948653507094 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_1484410420138899708 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_3311485272546726741 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_12524405920318161286 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_4771521287958300820 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_2699145632627254877 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_17932869055636646649 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_13805335251093601609 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_1044117425635371514 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_3052085656356042096 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_6097154642479826441 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_10028778034634581454 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_6598773735818790078 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_3563145642700431408 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_16015115131068594194 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_10421688719060310132 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_7194717298598279589 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_14529595316527319139 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_4428271490239728674 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_277715016970144365 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_4978628583773949937 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_5335442438190181237 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_4016181936069838 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_6817537704070003288 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_2280083384885249076 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_2927219844464813488 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_12811760112352798292 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_11162395267378283215 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_16337519945492845068 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_12451159409099309920 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_8786501335547708188 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_18252915343469613612 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_12016317764084876579 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_7461546483862219912 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_16840020878378605197 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_6182399427855178440 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_18444662738596660771 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:51:08              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:51:08                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021ad Begin
16/10/2020 16:51:08              dut.10.240.xxx.xx: 
16/10/2020 16:51:08                         tester: 
16/10/2020 16:51:08              dut.10.240.xxx.xx: 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_3778_20201016164315   --log-level="ice,8"  -- -i --rxq=32 --txq=32  --portmask=0x1 --nb-cores=2
16/10/2020 16:51:10              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_3778_20201016164315/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_6792250284262830817 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_12142515307906709315 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_9440752471071228751 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_6030703454517420698 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_3406413888053349625 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_5872586711034656420 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_17211665510252835578 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_14097413494686437370 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_11142385201715386913 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_16243121743542234293 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_13836788023076710010 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_18149422578115163023 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_7113482775396698794 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_3454928155525490826 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_17614539965973848674 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_9861561702168274789 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_3750063501059341990 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_9352404418199290404 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_569416576544550895 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_303094619672429985 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_11534591296771406364 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_1165530511219736673 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_3689772564918331432 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_16901746315439453081 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_17153315344660943682 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_1611891991856112561 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_3935493390437030121 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_10253666316103068820 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_3302277645172151084 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_3960441016027957947 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_7053861882360810658 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_9077449215255982589 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_6890529931393124573 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_7887956311917200915 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_18083356959100156204 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_15709006835423683619 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_7750700583713861571 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_16070793148008127571 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_6539792328697543494 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_11665407185232141369 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_16849690735711567516 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_6747174059094465643 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_13483740868518369368 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_11438319623966378953 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_3173442005376657108 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_2980170773192316160 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_11172989993721004513 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_15490461170152442419 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_2459262930868266568 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_10719095143864188744 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_3271281653106466237 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_5949557837600580732 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_7354932243095689007 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_5604754658024164936 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_1731926627234423876 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_12671781729186744114 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_3347938979701396046 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_22877063159986966 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_4775126362226445272 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_8916075476269103578 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_14408282363725538259 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_11664645455295887492 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_2305076607892088624 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_9876493125369035555 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_9151097045117207623 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_8304411790678059308 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_4394561077571194835 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_7135780859581532207 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_14600416527806408911 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_7599935389021690716 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_11694921717999285293 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_15977178801339609290 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_15079363078445461070 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_10045256499416561812 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_13215555466273943449 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_15964607384440539327 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_5714890668863106185 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_13890828780276936501 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_11062728970774526782 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_13249196983251018477 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_4793127809350332559 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_8939007616656647840 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_8866409234702573451 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_7229983374012586322 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_4702770883318385080 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_11671707164974592358 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_8452045113794799661 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_4940576535781757276 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_978267109174859708 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_2876240266249428522 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_4334165781834374647 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_6762932554688138892 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_8591804640633288854 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_1096814324689317273 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_10505650287711614615 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_17306895386186006443 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_956601121796836114 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_10632211747517310070 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_13885952859694195429 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_13853933672363420476 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_15150795868842786539 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_8965562796873129357 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_17034144874588721763 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_13902196562701003330 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_471814921551834046 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_3080801952830339343 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_3314660986781287955 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_6391471695312755471 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_3647745887279623481 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_577985750321862029 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_9876514414216950810 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_4390944233722818722 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_14940980505549238291 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_5123046004250710602 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_6790767428592955668 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_17907784996816373613 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_724147241223712917 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_848359994531676937 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_16623702534848895211 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_12346869231571638733 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_17936439204983504589 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_5080079097365362575 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_17429888835747935182 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_10713715681276675223 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_9097536993726728212 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_18227066407712909661 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_14451760130122542382 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_9408221514155082412 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_3400245733592643246 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_5131124045059089815 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_16666720280585427244 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_10993268662878408273 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 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 = 512, fd_fltr_best_effort = 14336.
ice_fdir_tx_queue_start():  >>
ice_fdir_rx_queue_start():  >>
__vsi_queues_bind_intr(): queue 0 is binding to vect 65
ice_fdir_setup(): FDIR setup successfully, with programming queue 0.
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=163456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc
testpmd: create a new mbuf pool <mbuf_pool_socket_1>: n=163456, size=2176, socket=1
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 1)
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 0.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 1.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 2.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 3.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 4.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 5.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 6.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 7.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 8.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 9.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 10.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 11.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 12.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 13.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 14.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 15.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 16.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 17.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 18.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 19.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 20.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 21.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 22.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 23.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 24.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 25.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 26.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 27.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 28.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 29.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 30.
ice_set_tx_function_flag(): Simple Tx can be enabled on Tx queue 31.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=0.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=1.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=2.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=3.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=4.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=5.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=6.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=7.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=8.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=9.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=10.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=11.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=12.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=13.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=14.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=15.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=16.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=17.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=18.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=19.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=20.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=21.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=22.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=23.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=24.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=25.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=26.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=27.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=28.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=29.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=30.
ice_rx_queue_setup(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port=0, queue=31.
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_tx_queue_start():  >>
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (0) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (1) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (2) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (3) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (4) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (5) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (6) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (7) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (8) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (9) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (10) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (11) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (12) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (13) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (14) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (15) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (16) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (17) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (18) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (19) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (20) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (21) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (22) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (23) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (24) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (25) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (26) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (27) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (28) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (29) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (30) is set with RXDID : 17
ice_rx_queue_start():  >>
ice_program_hw_rx_queue(): Port (0) - Rx queue (31) is set with RXDID : 17
ice_set_rx_function():  >>
ice_set_rx_function(): Rx Burst Bulk Alloc Preconditions are satisfied. Rx Burst Bulk Alloc function will be used on port 0.
ice_set_tx_function(): Using avx2 Vector Tx (port 0).
__vsi_queues_bind_intr(): queue 1 is binding to vect 1
__vsi_queues_bind_intr(): queue 2 is binding to vect 1
__vsi_queues_bind_intr(): queue 3 is binding to vect 1
__vsi_queues_bind_intr(): queue 4 is binding to vect 1
__vsi_queues_bind_intr(): queue 5 is binding to vect 1
__vsi_queues_bind_intr(): queue 6 is binding to vect 1
__vsi_queues_bind_intr(): queue 7 is binding to vect 1
__vsi_queues_bind_intr(): queue 8 is binding to vect 1
__vsi_queues_bind_intr(): queue 9 is binding to vect 1
__vsi_queues_bind_intr(): queue 10 is binding to vect 1
__vsi_queues_bind_intr(): queue 11 is binding to vect 1
__vsi_queues_bind_intr(): queue 12 is binding to vect 1
__vsi_queues_bind_intr(): queue 13 is binding to vect 1
__vsi_queues_bind_intr(): queue 14 is binding to vect 1
__vsi_queues_bind_intr(): queue 15 is binding to vect 1
__vsi_queues_bind_intr(): queue 16 is binding to vect 1
__vsi_queues_bind_intr(): queue 17 is binding to vect 1
__vsi_queues_bind_intr(): queue 18 is binding to vect 1
__vsi_queues_bind_intr(): queue 19 is binding to vect 1
__vsi_queues_bind_intr(): queue 20 is binding to vect 1
__vsi_queues_bind_intr(): queue 21 is binding to vect 1
__vsi_queues_bind_intr(): queue 22 is binding to vect 1
__vsi_queues_bind_intr(): queue 23 is binding to vect 1
__vsi_queues_bind_intr(): queue 24 is binding to vect 1
__vsi_queues_bind_intr(): queue 25 is binding to vect 1
__vsi_queues_bind_intr(): queue 26 is binding to vect 1
__vsi_queues_bind_intr(): queue 27 is binding to vect 1
__vsi_queues_bind_intr(): queue 28 is binding to vect 1
__vsi_queues_bind_intr(): queue 29 is binding to vect 1
__vsi_queues_bind_intr(): queue 30 is binding to vect 1
__vsi_queues_bind_intr(): queue 31 is binding to vect 1
__vsi_queues_bind_intr(): queue 32 is binding to vect 1
Port 0: 68:05:CA:C1:B8:C8
Checking link statuses...
Done
16/10/2020 16:51:20              dut.10.240.xxx.xx: set verbose 1
16/10/2020 16:51:20              dut.10.240.xxx.xx: 
Change verbose level from 0 to 1
16/10/2020 16:51:20              dut.10.240.xxx.xx: set fwd io
16/10/2020 16:51:20              dut.10.240.xxx.xx: 
Set io packet forwarding mode
16/10/2020 16:51:20              dut.10.240.xxx.xx: set promisc all off
16/10/2020 16:51:20              dut.10.240.xxx.xx: 
16/10/2020 16:51:20              dut.10.240.xxx.xx: clear port stats all
16/10/2020 16:51:20              dut.10.240.xxx.xx: 
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_update_vsi_stats(): ************** VSI[12] stats start **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats start *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************

  NIC statistics for port 0 cleared
16/10/2020 16:51:20              dut.10.240.xxx.xx: start
16/10/2020 16:51:21              dut.10.240.xxx.xx: 
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[12] stats  **************
ice_update_vsi_stats(): rx_bytes:            0
ice_update_vsi_stats(): rx_unicast:          0
ice_update_vsi_stats(): rx_multicast:        0
ice_update_vsi_stats(): rx_broadcast:        0
ice_update_vsi_stats(): rx_discards:         0
ice_update_vsi_stats(): rx_unknown_protocol: 0
ice_update_vsi_stats(): tx_bytes:            0
ice_update_vsi_stats(): tx_unicast:          0
ice_update_vsi_stats(): tx_multicast:        0
ice_update_vsi_stats(): tx_broadcast:        0
ice_update_vsi_stats(): tx_discards:         0
ice_update_vsi_stats(): tx_errors:           0
ice_update_vsi_stats(): ************** VSI[12] stats end ****************
ice_stats_get(): *************** PF stats  *****************
ice_stats_get(): rx_bytes:	0
ice_stats_get(): rx_unicast:	0
ice_stats_get(): rx_multicast:0
ice_stats_get(): rx_broadcast:0
ice_stats_get(): rx_discards:0
ice_stats_get(): vsi rx_discards:0
ice_stats_get(): rx_unknown_protocol:  0
ice_stats_get(): tx_bytes:	0
ice_stats_get(): tx_unicast:	0
ice_stats_get(): tx_multicast:0
ice_stats_get(): tx_broadcast:0
ice_stats_get(): tx_discards:0
ice_stats_get(): vsi tx_discards:0
ice_stats_get(): tx_errors:		0
ice_stats_get(): tx_dropped_link_down:	0
ice_stats_get(): crc_errors:	0
ice_stats_get(): illegal_bytes:	0
ice_stats_get(): error_bytes:	0
ice_stats_get(): mac_local_faults:	0
ice_stats_get(): mac_remote_faults:	0
ice_stats_get(): link_xon_rx:	0
ice_stats_get(): link_xoff_rx:	0
ice_stats_get(): link_xon_tx:	0
ice_stats_get(): link_xoff_tx:	0
ice_stats_get(): rx_size_64:		0
ice_stats_get(): rx_size_127:	0
ice_stats_get(): rx_size_255:	0
ice_stats_get(): rx_size_511:	0
ice_stats_get(): rx_size_1023:	0
ice_stats_get(): rx_size_1522:	0
ice_stats_get(): rx_size_big:	0
ice_stats_get(): rx_undersize:	0
ice_stats_get(): rx_fragments:	0
ice_stats_get(): rx_oversize:	0
ice_stats_get(): rx_jabber:		0
ice_stats_get(): tx_size_64:		0
ice_stats_get(): tx_size_127:	0
ice_stats_get(): tx_size_255:	0
ice_stats_get(): tx_size_511:	0
ice_stats_get(): tx_size_1023:	0
ice_stats_get(): tx_size_1522:	0
ice_stats_get(): tx_size_big:	0
ice_stats_get(): rx_len_errors:	0
ice_stats_get(): ************* PF stats end ****************
16/10/2020 16:51:24              dut.10.240.xxx.xx: port 0/queue 0: received 1 packets
  src=00:00:00:00:01:00 - dst=68:05:CA:C1:B8:C8 - 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 

16/10/2020 16:51:24                TestFlexibleRxd: Test Case test_check_single_VLAN_fields_in_RXD_8021ad Result PASSED:
16/10/2020 16:51:24              dut.10.240.xxx.xx: quit
16/10/2020 16:51:25              dut.10.240.xxx.xx: 
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[12] 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[12] 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_12142515307906709315 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_9440752471071228751 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_6030703454517420698 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_3406413888053349625 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_5872586711034656420 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_17211665510252835578 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_14097413494686437370 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_11142385201715386913 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_16243121743542234293 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_13836788023076710010 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_18149422578115163023 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_7113482775396698794 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_3454928155525490826 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_17614539965973848674 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_9861561702168274789 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_3750063501059341990 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_9352404418199290404 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_569416576544550895 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_303094619672429985 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_11534591296771406364 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_1165530511219736673 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_3689772564918331432 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_16901746315439453081 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_17153315344660943682 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_1611891991856112561 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_3935493390437030121 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_10253666316103068820 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_3302277645172151084 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_3960441016027957947 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_7053861882360810658 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_9077449215255982589 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_6890529931393124573 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_6792250284262830817 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_18083356959100156204 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_15709006835423683619 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_7750700583713861571 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_16070793148008127571 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_6539792328697543494 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_11665407185232141369 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_16849690735711567516 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_6747174059094465643 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_13483740868518369368 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_11438319623966378953 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_3173442005376657108 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_2980170773192316160 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_11172989993721004513 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_15490461170152442419 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_2459262930868266568 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_10719095143864188744 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_3271281653106466237 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_5949557837600580732 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_7354932243095689007 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_5604754658024164936 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_1731926627234423876 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_12671781729186744114 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_3347938979701396046 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_22877063159986966 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_4775126362226445272 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_8916075476269103578 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_14408282363725538259 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_11664645455295887492 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_2305076607892088624 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_9876493125369035555 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_9151097045117207623 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_8304411790678059308 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_7887956311917200915 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_7135780859581532207 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_14600416527806408911 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_7599935389021690716 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_11694921717999285293 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_15977178801339609290 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_15079363078445461070 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_10045256499416561812 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_13215555466273943449 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_15964607384440539327 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_5714890668863106185 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_13890828780276936501 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_11062728970774526782 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_13249196983251018477 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_4793127809350332559 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_8939007616656647840 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_8866409234702573451 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_7229983374012586322 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_4702770883318385080 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_11671707164974592358 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_8452045113794799661 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_4940576535781757276 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_978267109174859708 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_2876240266249428522 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_4334165781834374647 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_6762932554688138892 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_8591804640633288854 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_1096814324689317273 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_10505650287711614615 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_17306895386186006443 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_956601121796836114 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_10632211747517310070 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_13885952859694195429 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_4394561077571194835 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_15150795868842786539 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_8965562796873129357 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_17034144874588721763 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_13902196562701003330 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_471814921551834046 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_3080801952830339343 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_3314660986781287955 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_6391471695312755471 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_3647745887279623481 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_577985750321862029 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_9876514414216950810 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_4390944233722818722 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_14940980505549238291 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_5123046004250710602 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_6790767428592955668 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_17907784996816373613 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_724147241223712917 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_848359994531676937 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_16623702534848895211 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_12346869231571638733 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_17936439204983504589 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_5080079097365362575 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_17429888835747935182 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_10713715681276675223 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_9097536993726728212 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_18227066407712909661 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_14451760130122542382 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_9408221514155082412 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_3400245733592643246 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_5131124045059089815 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_16666720280585427244 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_10993268662878408273 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_13853933672363420476 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:51:27              dut.10.240.xxx.xx: kill_all: called by dut and prefix list has value.
16/10/2020 16:51:28                TestFlexibleRxd: Test Case test_check_testpmd_use_different_parameters Begin
16/10/2020 16:51:28              dut.10.240.xxx.xx: 
16/10/2020 16:51:28                         tester: 
16/10/2020 16:51:28              dut.10.240.xxx.xx: 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
16/10/2020 16:51:30              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) 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
16/10/2020 16:51:30              dut.10.240.xxx.xx: 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
16/10/2020 16:51:31              dut.10.240.xxx.xx: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: 1024 hugepages of size 2097152 reserved, but no mounted hugetlbfs found for that size
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_ice (8086:1593) device: 0000:af:00.0 (socket 1)
ice_alloc_dma_mem(): memzone ice_dma_10317909243839341873 allocated with physical address: 6442131584
ice_alloc_dma_mem(): memzone ice_dma_12864588527739557845 allocated with physical address: 6442125952
ice_alloc_dma_mem(): memzone ice_dma_3993536319074886370 allocated with physical address: 6442121728
ice_alloc_dma_mem(): memzone ice_dma_1311555422287474906 allocated with physical address: 6442117504
ice_alloc_dma_mem(): memzone ice_dma_5393354117966429461 allocated with physical address: 6442113280
ice_alloc_dma_mem(): memzone ice_dma_18089379046155958680 allocated with physical address: 6442109056
ice_alloc_dma_mem(): memzone ice_dma_11223770127947385194 allocated with physical address: 6442104832
ice_alloc_dma_mem(): memzone ice_dma_9495549100057989804 allocated with physical address: 6442100608
ice_alloc_dma_mem(): memzone ice_dma_11085319275340489899 allocated with physical address: 6442096384
ice_alloc_dma_mem(): memzone ice_dma_420975665245324469 allocated with physical address: 6442092160
ice_alloc_dma_mem(): memzone ice_dma_15440342509026218392 allocated with physical address: 6442087936
ice_alloc_dma_mem(): memzone ice_dma_623376425293964461 allocated with physical address: 6442083712
ice_alloc_dma_mem(): memzone ice_dma_7375028925853762366 allocated with physical address: 6442079488
ice_alloc_dma_mem(): memzone ice_dma_14610104188788877709 allocated with physical address: 6442075264
ice_alloc_dma_mem(): memzone ice_dma_6200877013652594693 allocated with physical address: 6442071040
ice_alloc_dma_mem(): memzone ice_dma_8237706265706787814 allocated with physical address: 6442066816
ice_alloc_dma_mem(): memzone ice_dma_2830871169105875175 allocated with physical address: 6442062592
ice_alloc_dma_mem(): memzone ice_dma_15478601111129997387 allocated with physical address: 6442058368
ice_alloc_dma_mem(): memzone ice_dma_18263518729123446579 allocated with physical address: 6442054144
ice_alloc_dma_mem(): memzone ice_dma_9103317411250028535 allocated with physical address: 6442049920
ice_alloc_dma_mem(): memzone ice_dma_16078504080255769622 allocated with physical address: 6442045696
ice_alloc_dma_mem(): memzone ice_dma_13751586573401671807 allocated with physical address: 6442041472
ice_alloc_dma_mem(): memzone ice_dma_3027303843811734748 allocated with physical address: 6442037248
ice_alloc_dma_mem(): memzone ice_dma_16236591833982543951 allocated with physical address: 6442033024
ice_alloc_dma_mem(): memzone ice_dma_1355303344301390324 allocated with physical address: 6442028800
ice_alloc_dma_mem(): memzone ice_dma_15305942128473446367 allocated with physical address: 6442024576
ice_alloc_dma_mem(): memzone ice_dma_469452765141466830 allocated with physical address: 6442020352
ice_alloc_dma_mem(): memzone ice_dma_8621838162872626270 allocated with physical address: 6442016128
ice_alloc_dma_mem(): memzone ice_dma_1330806524195650500 allocated with physical address: 6442011904
ice_alloc_dma_mem(): memzone ice_dma_12787630172728834253 allocated with physical address: 6442007680
ice_alloc_dma_mem(): memzone ice_dma_6098670877661891422 allocated with physical address: 6442003456
ice_alloc_dma_mem(): memzone ice_dma_49544497465827258 allocated with physical address: 6441999232
ice_alloc_dma_mem(): memzone ice_dma_16757326562221065277 allocated with physical address: 6441995008
ice_alloc_dma_mem(): memzone ice_dma_139632469086322099 allocated with physical address: 6441993856
ice_alloc_dma_mem(): memzone ice_dma_15610997819558067989 allocated with physical address: 6441988608
ice_alloc_dma_mem(): memzone ice_dma_588120434885025157 allocated with physical address: 6441984384
ice_alloc_dma_mem(): memzone ice_dma_14042125423927554072 allocated with physical address: 6441980160
ice_alloc_dma_mem(): memzone ice_dma_14940780656110968788 allocated with physical address: 6441975936
ice_alloc_dma_mem(): memzone ice_dma_5225844506158606951 allocated with physical address: 6441971712
ice_alloc_dma_mem(): memzone ice_dma_4929442111060869160 allocated with physical address: 6441967488
ice_alloc_dma_mem(): memzone ice_dma_3388938246874390023 allocated with physical address: 6441963264
ice_alloc_dma_mem(): memzone ice_dma_12955590809882734686 allocated with physical address: 6441959040
ice_alloc_dma_mem(): memzone ice_dma_6272810623077243790 allocated with physical address: 6441954816
ice_alloc_dma_mem(): memzone ice_dma_6455081264139719527 allocated with physical address: 6441950592
ice_alloc_dma_mem(): memzone ice_dma_10237478098582378318 allocated with physical address: 6441946368
ice_alloc_dma_mem(): memzone ice_dma_14845074901995779689 allocated with physical address: 6441942144
ice_alloc_dma_mem(): memzone ice_dma_13025392225422049207 allocated with physical address: 6441937920
ice_alloc_dma_mem(): memzone ice_dma_9870700953282036277 allocated with physical address: 6441933696
ice_alloc_dma_mem(): memzone ice_dma_10057805531234848618 allocated with physical address: 6441929472
ice_alloc_dma_mem(): memzone ice_dma_14050994331706217758 allocated with physical address: 6441925248
ice_alloc_dma_mem(): memzone ice_dma_14127302055176147481 allocated with physical address: 6441921024
ice_alloc_dma_mem(): memzone ice_dma_18360512591284455568 allocated with physical address: 6441916800
ice_alloc_dma_mem(): memzone ice_dma_8363403007368312168 allocated with physical address: 6441912576
ice_alloc_dma_mem(): memzone ice_dma_18249655315720600644 allocated with physical address: 6441908352
ice_alloc_dma_mem(): memzone ice_dma_10878921886617174290 allocated with physical address: 6441904128
ice_alloc_dma_mem(): memzone ice_dma_6452213995349370987 allocated with physical address: 6441899904
ice_alloc_dma_mem(): memzone ice_dma_5830630156413953093 allocated with physical address: 6441895680
ice_alloc_dma_mem(): memzone ice_dma_13489541698467320833 allocated with physical address: 6441891456
ice_alloc_dma_mem(): memzone ice_dma_1694413423642848730 allocated with physical address: 6441887232
ice_alloc_dma_mem(): memzone ice_dma_4116867221309743224 allocated with physical address: 6441883008
ice_alloc_dma_mem(): memzone ice_dma_15781455266128991661 allocated with physical address: 6441878784
ice_alloc_dma_mem(): memzone ice_dma_11833555895404956834 allocated with physical address: 6441874560
ice_alloc_dma_mem(): memzone ice_dma_406484301522842464 allocated with physical address: 6441870336
ice_alloc_dma_mem(): memzone ice_dma_5719241625548786228 allocated with physical address: 6441866112
ice_alloc_dma_mem(): memzone ice_dma_12517232614911871121 allocated with physical address: 6441861888
ice_alloc_dma_mem(): memzone ice_dma_14146036951599081086 allocated with physical address: 6441857664
ice_alloc_dma_mem(): memzone ice_dma_836758497007393490 allocated with physical address: 6441856512
ice_alloc_dma_mem(): memzone ice_dma_3590511431998762273 allocated with physical address: 6441850880
ice_alloc_dma_mem(): memzone ice_dma_10984128125639675403 allocated with physical address: 6441846656
ice_alloc_dma_mem(): memzone ice_dma_3311229452667266791 allocated with physical address: 6441842432
ice_alloc_dma_mem(): memzone ice_dma_2708966760299666833 allocated with physical address: 6441838208
ice_alloc_dma_mem(): memzone ice_dma_14523459640578972539 allocated with physical address: 6441833984
ice_alloc_dma_mem(): memzone ice_dma_2792640031894117802 allocated with physical address: 6441829760
ice_alloc_dma_mem(): memzone ice_dma_6735129245982203625 allocated with physical address: 6441825536
ice_alloc_dma_mem(): memzone ice_dma_11707307527380615426 allocated with physical address: 6441821312
ice_alloc_dma_mem(): memzone ice_dma_3641813644500026801 allocated with physical address: 6441817088
ice_alloc_dma_mem(): memzone ice_dma_9159117015487125902 allocated with physical address: 6441812864
ice_alloc_dma_mem(): memzone ice_dma_6264374050593430404 allocated with physical address: 6441808640
ice_alloc_dma_mem(): memzone ice_dma_3657902491557567515 allocated with physical address: 6441804416
ice_alloc_dma_mem(): memzone ice_dma_7675950760295345627 allocated with physical address: 6441800192
ice_alloc_dma_mem(): memzone ice_dma_399942810501079796 allocated with physical address: 6441795968
ice_alloc_dma_mem(): memzone ice_dma_11762758072273623844 allocated with physical address: 6441791744
ice_alloc_dma_mem(): memzone ice_dma_11295855512623774906 allocated with physical address: 6441787520
ice_alloc_dma_mem(): memzone ice_dma_5782857281872058059 allocated with physical address: 6441783296
ice_alloc_dma_mem(): memzone ice_dma_10906382566716936036 allocated with physical address: 6441779072
ice_alloc_dma_mem(): memzone ice_dma_5029712810761804623 allocated with physical address: 6441774848
ice_alloc_dma_mem(): memzone ice_dma_11191963633908852043 allocated with physical address: 6441770624
ice_alloc_dma_mem(): memzone ice_dma_924321555701633061 allocated with physical address: 6441766400
ice_alloc_dma_mem(): memzone ice_dma_2911800232695189219 allocated with physical address: 6441762176
ice_alloc_dma_mem(): memzone ice_dma_12503561101970303860 allocated with physical address: 6441757952
ice_alloc_dma_mem(): memzone ice_dma_1518948210858841995 allocated with physical address: 6441753728
ice_alloc_dma_mem(): memzone ice_dma_15407581826413742220 allocated with physical address: 6441749504
ice_alloc_dma_mem(): memzone ice_dma_5959267799375947135 allocated with physical address: 6441745280
ice_alloc_dma_mem(): memzone ice_dma_14497457288232221069 allocated with physical address: 6441741056
ice_alloc_dma_mem(): memzone ice_dma_7686220066789743572 allocated with physical address: 6441736832
ice_alloc_dma_mem(): memzone ice_dma_14660022368614880917 allocated with physical address: 6441732608
ice_alloc_dma_mem(): memzone ice_dma_1793379275192420047 allocated with physical address: 6441728384
ice_alloc_dma_mem(): memzone ice_dma_8332021978398351442 allocated with physical address: 6441724160
ice_alloc_dma_mem(): memzone ice_dma_11052446962217744190 allocated with physical address: 6441719936
ice_alloc_dma_mem(): memzone ice_dma_6542634917670169804 allocated with physical address: 6441718784
ice_alloc_dma_mem(): memzone ice_dma_11616737689363254185 allocated with physical address: 6441713536
ice_alloc_dma_mem(): memzone ice_dma_9836579010871714739 allocated with physical address: 6441709312
ice_alloc_dma_mem(): memzone ice_dma_5354739275723152820 allocated with physical address: 6441705088
ice_alloc_dma_mem(): memzone ice_dma_12288001839867653321 allocated with physical address: 6441700864
ice_alloc_dma_mem(): memzone ice_dma_15903900355354128633 allocated with physical address: 6441696640
ice_alloc_dma_mem(): memzone ice_dma_14394128839067703874 allocated with physical address: 6441692416
ice_alloc_dma_mem(): memzone ice_dma_7747457269085721670 allocated with physical address: 6441688192
ice_alloc_dma_mem(): memzone ice_dma_12626032329517310674 allocated with physical address: 6441683968
ice_alloc_dma_mem(): memzone ice_dma_17137699386343092581 allocated with physical address: 6441679744
ice_alloc_dma_mem(): memzone ice_dma_13765921025010114390 allocated with physical address: 6441675520
ice_alloc_dma_mem(): memzone ice_dma_1077356078604113609 allocated with physical address: 6441671296
ice_alloc_dma_mem(): memzone ice_dma_16118932661390368215 allocated with physical address: 6441667072
ice_alloc_dma_mem(): memzone ice_dma_7852879372243208180 allocated with physical address: 6441662848
ice_alloc_dma_mem(): memzone ice_dma_5923769299596724278 allocated with physical address: 6441658624
ice_alloc_dma_mem(): memzone ice_dma_8400012570925111497 allocated with physical address: 6441654400
ice_alloc_dma_mem(): memzone ice_dma_11812770626414242231 allocated with physical address: 6441650176
ice_alloc_dma_mem(): memzone ice_dma_10899500868417517130 allocated with physical address: 6441645952
ice_alloc_dma_mem(): memzone ice_dma_5955916304891111631 allocated with physical address: 6441641728
ice_alloc_dma_mem(): memzone ice_dma_15026905714130562838 allocated with physical address: 6441637504
ice_alloc_dma_mem(): memzone ice_dma_11249847617198045702 allocated with physical address: 6441633280
ice_alloc_dma_mem(): memzone ice_dma_4650289086734603002 allocated with physical address: 6441629056
ice_alloc_dma_mem(): memzone ice_dma_187357789874881752 allocated with physical address: 6441624832
ice_alloc_dma_mem(): memzone ice_dma_18203963498714237395 allocated with physical address: 6441620608
ice_alloc_dma_mem(): memzone ice_dma_17388168457478538398 allocated with physical address: 6441616384
ice_alloc_dma_mem(): memzone ice_dma_9814641806460041269 allocated with physical address: 6441612160
ice_alloc_dma_mem(): memzone ice_dma_15906573138499796277 allocated with physical address: 6441607936
ice_alloc_dma_mem(): memzone ice_dma_5545752997217825514 allocated with physical address: 6441603712
ice_alloc_dma_mem(): memzone ice_dma_6129931674842839081 allocated with physical address: 6441599488
ice_alloc_dma_mem(): memzone ice_dma_4464005073623612503 allocated with physical address: 6441595264
ice_alloc_dma_mem(): memzone ice_dma_3857319662662610569 allocated with physical address: 6441591040
ice_alloc_dma_mem(): memzone ice_dma_8987723569666927316 allocated with physical address: 6441586816
ice_alloc_dma_mem(): memzone ice_dma_14726693763396672421 allocated with physical address: 6441582592
ice_load_pkg_type(): Active package is: 1.3.20.0, ICE COMMS Package
ice_dev_init(): FW 5.2.-1179796632 API 1.7
ice_dev_init(): lldp has already stopped

ice_dev_init(): Failed to init DCB

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

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

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

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_12864588527739557845 to be freed with physical address: 6442125952
ice_free_dma_mem(): memzone ice_dma_3993536319074886370 to be freed with physical address: 6442121728
ice_free_dma_mem(): memzone ice_dma_1311555422287474906 to be freed with physical address: 6442117504
ice_free_dma_mem(): memzone ice_dma_5393354117966429461 to be freed with physical address: 6442113280
ice_free_dma_mem(): memzone ice_dma_18089379046155958680 to be freed with physical address: 6442109056
ice_free_dma_mem(): memzone ice_dma_11223770127947385194 to be freed with physical address: 6442104832
ice_free_dma_mem(): memzone ice_dma_9495549100057989804 to be freed with physical address: 6442100608
ice_free_dma_mem(): memzone ice_dma_11085319275340489899 to be freed with physical address: 6442096384
ice_free_dma_mem(): memzone ice_dma_420975665245324469 to be freed with physical address: 6442092160
ice_free_dma_mem(): memzone ice_dma_15440342509026218392 to be freed with physical address: 6442087936
ice_free_dma_mem(): memzone ice_dma_623376425293964461 to be freed with physical address: 6442083712
ice_free_dma_mem(): memzone ice_dma_7375028925853762366 to be freed with physical address: 6442079488
ice_free_dma_mem(): memzone ice_dma_14610104188788877709 to be freed with physical address: 6442075264
ice_free_dma_mem(): memzone ice_dma_6200877013652594693 to be freed with physical address: 6442071040
ice_free_dma_mem(): memzone ice_dma_8237706265706787814 to be freed with physical address: 6442066816
ice_free_dma_mem(): memzone ice_dma_2830871169105875175 to be freed with physical address: 6442062592
ice_free_dma_mem(): memzone ice_dma_15478601111129997387 to be freed with physical address: 6442058368
ice_free_dma_mem(): memzone ice_dma_18263518729123446579 to be freed with physical address: 6442054144
ice_free_dma_mem(): memzone ice_dma_9103317411250028535 to be freed with physical address: 6442049920
ice_free_dma_mem(): memzone ice_dma_16078504080255769622 to be freed with physical address: 6442045696
ice_free_dma_mem(): memzone ice_dma_13751586573401671807 to be freed with physical address: 6442041472
ice_free_dma_mem(): memzone ice_dma_3027303843811734748 to be freed with physical address: 6442037248
ice_free_dma_mem(): memzone ice_dma_16236591833982543951 to be freed with physical address: 6442033024
ice_free_dma_mem(): memzone ice_dma_1355303344301390324 to be freed with physical address: 6442028800
ice_free_dma_mem(): memzone ice_dma_15305942128473446367 to be freed with physical address: 6442024576
ice_free_dma_mem(): memzone ice_dma_469452765141466830 to be freed with physical address: 6442020352
ice_free_dma_mem(): memzone ice_dma_8621838162872626270 to be freed with physical address: 6442016128
ice_free_dma_mem(): memzone ice_dma_1330806524195650500 to be freed with physical address: 6442011904
ice_free_dma_mem(): memzone ice_dma_12787630172728834253 to be freed with physical address: 6442007680
ice_free_dma_mem(): memzone ice_dma_6098670877661891422 to be freed with physical address: 6442003456
ice_free_dma_mem(): memzone ice_dma_49544497465827258 to be freed with physical address: 6441999232
ice_free_dma_mem(): memzone ice_dma_16757326562221065277 to be freed with physical address: 6441995008
ice_free_dma_mem(): memzone ice_dma_10317909243839341873 to be freed with physical address: 6442131584
ice_free_dma_mem(): memzone ice_dma_15610997819558067989 to be freed with physical address: 6441988608
ice_free_dma_mem(): memzone ice_dma_588120434885025157 to be freed with physical address: 6441984384
ice_free_dma_mem(): memzone ice_dma_14042125423927554072 to be freed with physical address: 6441980160
ice_free_dma_mem(): memzone ice_dma_14940780656110968788 to be freed with physical address: 6441975936
ice_free_dma_mem(): memzone ice_dma_5225844506158606951 to be freed with physical address: 6441971712
ice_free_dma_mem(): memzone ice_dma_4929442111060869160 to be freed with physical address: 6441967488
ice_free_dma_mem(): memzone ice_dma_3388938246874390023 to be freed with physical address: 6441963264
ice_free_dma_mem(): memzone ice_dma_12955590809882734686 to be freed with physical address: 6441959040
ice_free_dma_mem(): memzone ice_dma_6272810623077243790 to be freed with physical address: 6441954816
ice_free_dma_mem(): memzone ice_dma_6455081264139719527 to be freed with physical address: 6441950592
ice_free_dma_mem(): memzone ice_dma_10237478098582378318 to be freed with physical address: 6441946368
ice_free_dma_mem(): memzone ice_dma_14845074901995779689 to be freed with physical address: 6441942144
ice_free_dma_mem(): memzone ice_dma_13025392225422049207 to be freed with physical address: 6441937920
ice_free_dma_mem(): memzone ice_dma_9870700953282036277 to be freed with physical address: 6441933696
ice_free_dma_mem(): memzone ice_dma_10057805531234848618 to be freed with physical address: 6441929472
ice_free_dma_mem(): memzone ice_dma_14050994331706217758 to be freed with physical address: 6441925248
ice_free_dma_mem(): memzone ice_dma_14127302055176147481 to be freed with physical address: 6441921024
ice_free_dma_mem(): memzone ice_dma_18360512591284455568 to be freed with physical address: 6441916800
ice_free_dma_mem(): memzone ice_dma_8363403007368312168 to be freed with physical address: 6441912576
ice_free_dma_mem(): memzone ice_dma_18249655315720600644 to be freed with physical address: 6441908352
ice_free_dma_mem(): memzone ice_dma_10878921886617174290 to be freed with physical address: 6441904128
ice_free_dma_mem(): memzone ice_dma_6452213995349370987 to be freed with physical address: 6441899904
ice_free_dma_mem(): memzone ice_dma_5830630156413953093 to be freed with physical address: 6441895680
ice_free_dma_mem(): memzone ice_dma_13489541698467320833 to be freed with physical address: 6441891456
ice_free_dma_mem(): memzone ice_dma_1694413423642848730 to be freed with physical address: 6441887232
ice_free_dma_mem(): memzone ice_dma_4116867221309743224 to be freed with physical address: 6441883008
ice_free_dma_mem(): memzone ice_dma_15781455266128991661 to be freed with physical address: 6441878784
ice_free_dma_mem(): memzone ice_dma_11833555895404956834 to be freed with physical address: 6441874560
ice_free_dma_mem(): memzone ice_dma_406484301522842464 to be freed with physical address: 6441870336
ice_free_dma_mem(): memzone ice_dma_5719241625548786228 to be freed with physical address: 6441866112
ice_free_dma_mem(): memzone ice_dma_12517232614911871121 to be freed with physical address: 6441861888
ice_free_dma_mem(): memzone ice_dma_14146036951599081086 to be freed with physical address: 6441857664
ice_free_dma_mem(): memzone ice_dma_139632469086322099 to be freed with physical address: 6441993856
ice_free_dma_mem(): memzone ice_dma_3590511431998762273 to be freed with physical address: 6441850880
ice_free_dma_mem(): memzone ice_dma_10984128125639675403 to be freed with physical address: 6441846656
ice_free_dma_mem(): memzone ice_dma_3311229452667266791 to be freed with physical address: 6441842432
ice_free_dma_mem(): memzone ice_dma_2708966760299666833 to be freed with physical address: 6441838208
ice_free_dma_mem(): memzone ice_dma_14523459640578972539 to be freed with physical address: 6441833984
ice_free_dma_mem(): memzone ice_dma_2792640031894117802 to be freed with physical address: 6441829760
ice_free_dma_mem(): memzone ice_dma_6735129245982203625 to be freed with physical address: 6441825536
ice_free_dma_mem(): memzone ice_dma_11707307527380615426 to be freed with physical address: 6441821312
ice_free_dma_mem(): memzone ice_dma_3641813644500026801 to be freed with physical address: 6441817088
ice_free_dma_mem(): memzone ice_dma_9159117015487125902 to be freed with physical address: 6441812864
ice_free_dma_mem(): memzone ice_dma_6264374050593430404 to be freed with physical address: 6441808640
ice_free_dma_mem(): memzone ice_dma_3657902491557567515 to be freed with physical address: 6441804416
ice_free_dma_mem(): memzone ice_dma_7675950760295345627 to be freed with physical address: 6441800192
ice_free_dma_mem(): memzone ice_dma_399942810501079796 to be freed with physical address: 6441795968
ice_free_dma_mem(): memzone ice_dma_11762758072273623844 to be freed with physical address: 6441791744
ice_free_dma_mem(): memzone ice_dma_11295855512623774906 to be freed with physical address: 6441787520
ice_free_dma_mem(): memzone ice_dma_5782857281872058059 to be freed with physical address: 6441783296
ice_free_dma_mem(): memzone ice_dma_10906382566716936036 to be freed with physical address: 6441779072
ice_free_dma_mem(): memzone ice_dma_5029712810761804623 to be freed with physical address: 6441774848
ice_free_dma_mem(): memzone ice_dma_11191963633908852043 to be freed with physical address: 6441770624
ice_free_dma_mem(): memzone ice_dma_924321555701633061 to be freed with physical address: 6441766400
ice_free_dma_mem(): memzone ice_dma_2911800232695189219 to be freed with physical address: 6441762176
ice_free_dma_mem(): memzone ice_dma_12503561101970303860 to be freed with physical address: 6441757952
ice_free_dma_mem(): memzone ice_dma_1518948210858841995 to be freed with physical address: 6441753728
ice_free_dma_mem(): memzone ice_dma_15407581826413742220 to be freed with physical address: 6441749504
ice_free_dma_mem(): memzone ice_dma_5959267799375947135 to be freed with physical address: 6441745280
ice_free_dma_mem(): memzone ice_dma_14497457288232221069 to be freed with physical address: 6441741056
ice_free_dma_mem(): memzone ice_dma_7686220066789743572 to be freed with physical address: 6441736832
ice_free_dma_mem(): memzone ice_dma_14660022368614880917 to be freed with physical address: 6441732608
ice_free_dma_mem(): memzone ice_dma_1793379275192420047 to be freed with physical address: 6441728384
ice_free_dma_mem(): memzone ice_dma_8332021978398351442 to be freed with physical address: 6441724160
ice_free_dma_mem(): memzone ice_dma_11052446962217744190 to be freed with physical address: 6441719936
ice_free_dma_mem(): memzone ice_dma_836758497007393490 to be freed with physical address: 6441856512
ice_free_dma_mem(): memzone ice_dma_11616737689363254185 to be freed with physical address: 6441713536
ice_free_dma_mem(): memzone ice_dma_9836579010871714739 to be freed with physical address: 6441709312
ice_free_dma_mem(): memzone ice_dma_5354739275723152820 to be freed with physical address: 6441705088
ice_free_dma_mem(): memzone ice_dma_12288001839867653321 to be freed with physical address: 6441700864
ice_free_dma_mem(): memzone ice_dma_15903900355354128633 to be freed with physical address: 6441696640
ice_free_dma_mem(): memzone ice_dma_14394128839067703874 to be freed with physical address: 6441692416
ice_free_dma_mem(): memzone ice_dma_7747457269085721670 to be freed with physical address: 6441688192
ice_free_dma_mem(): memzone ice_dma_12626032329517310674 to be freed with physical address: 6441683968
ice_free_dma_mem(): memzone ice_dma_17137699386343092581 to be freed with physical address: 6441679744
ice_free_dma_mem(): memzone ice_dma_13765921025010114390 to be freed with physical address: 6441675520
ice_free_dma_mem(): memzone ice_dma_1077356078604113609 to be freed with physical address: 6441671296
ice_free_dma_mem(): memzone ice_dma_16118932661390368215 to be freed with physical address: 6441667072
ice_free_dma_mem(): memzone ice_dma_7852879372243208180 to be freed with physical address: 6441662848
ice_free_dma_mem(): memzone ice_dma_5923769299596724278 to be freed with physical address: 6441658624
ice_free_dma_mem(): memzone ice_dma_8400012570925111497 to be freed with physical address: 6441654400
ice_free_dma_mem(): memzone ice_dma_11812770626414242231 to be freed with physical address: 6441650176
ice_free_dma_mem(): memzone ice_dma_10899500868417517130 to be freed with physical address: 6441645952
ice_free_dma_mem(): memzone ice_dma_5955916304891111631 to be freed with physical address: 6441641728
ice_free_dma_mem(): memzone ice_dma_15026905714130562838 to be freed with physical address: 6441637504
ice_free_dma_mem(): memzone ice_dma_11249847617198045702 to be freed with physical address: 6441633280
ice_free_dma_mem(): memzone ice_dma_4650289086734603002 to be freed with physical address: 6441629056
ice_free_dma_mem(): memzone ice_dma_187357789874881752 to be freed with physical address: 6441624832
ice_free_dma_mem(): memzone ice_dma_18203963498714237395 to be freed with physical address: 6441620608
ice_free_dma_mem(): memzone ice_dma_17388168457478538398 to be freed with physical address: 6441616384
ice_free_dma_mem(): memzone ice_dma_9814641806460041269 to be freed with physical address: 6441612160
ice_free_dma_mem(): memzone ice_dma_15906573138499796277 to be freed with physical address: 6441607936
ice_free_dma_mem(): memzone ice_dma_5545752997217825514 to be freed with physical address: 6441603712
ice_free_dma_mem(): memzone ice_dma_6129931674842839081 to be freed with physical address: 6441599488
ice_free_dma_mem(): memzone ice_dma_4464005073623612503 to be freed with physical address: 6441595264
ice_free_dma_mem(): memzone ice_dma_3857319662662610569 to be freed with physical address: 6441591040
ice_free_dma_mem(): memzone ice_dma_8987723569666927316 to be freed with physical address: 6441586816
ice_free_dma_mem(): memzone ice_dma_14726693763396672421 to be freed with physical address: 6441582592
ice_free_dma_mem(): memzone ice_dma_6542634917670169804 to be freed with physical address: 6441718784
Port 0 is closed
Done

Bye...
16/10/2020 16:51:33                TestFlexibleRxd: Test Case test_check_testpmd_use_different_parameters Result PASSED:
16/10/2020 16:51:35              dut.10.240.xxx.xx: kill_all: called by dut and has no prefix list.
16/10/2020 16:51:36                            dts: 
TEST SUITE ENDED: TestFlexibleRxd

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

* Re: [dts] [PATCH V2 0/2] flexible_rxd: add test cases for iavf/mpls
  2020-10-19  5:05 [dts] [PATCH V2 0/2] flexible_rxd: add test cases for iavf/mpls yufengmx
                   ` (2 preceding siblings ...)
  2020-10-19  5:12 ` [dts] [PATCH V2 0/2] flexible_rxd: add test cases for iavf/mpls Mo, YufengX
@ 2020-10-19  5:16 ` Ma, LihongX
  3 siblings, 0 replies; 5+ messages in thread
From: Ma, LihongX @ 2020-10-19  5:16 UTC (permalink / raw)
  To: Mo, YufengX, dts

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

Regards,
Ma,lihong

> -----Original Message-----
> From: Mo, YufengX <yufengx.mo@intel.com>
> Sent: Monday, October 19, 2020 1:06 PM
> To: dts@dpdk.org; Ma, LihongX <lihongx.ma@intel.com>
> Cc: Mo, YufengX <yufengx.mo@intel.com>
> Subject: [dts][PATCH V2 0/2] flexible_rxd: add test cases for iavf/mpls
> 
> 
> 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

end of thread, other threads:[~2020-10-19  5:16 UTC | newest]

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

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