test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts]  [PATCH V1] tests/cvl_iavf_rss_gtpu:add iavf rss gtpu suite
@ 2020-10-20  9:41 Zhimin Huang
  2020-10-20 10:04 ` Huang, ZhiminX
  0 siblings, 1 reply; 2+ messages in thread
From: Zhimin Huang @ 2020-10-20  9:41 UTC (permalink / raw)
  To: dts, qi.fu; +Cc: Zhimin Huang

*add cvl_iavf_rss_gtpu.py suite.

Signed-off-by: Zhimin Huang <zhiminx.huang@intel.com>
---
 tests/TestSuite_cvl_iavf_rss_gtpu.py | 8962 ++++++++++++++++++++++++++++++++++
 1 file changed, 8962 insertions(+)
 create mode 100755 tests/TestSuite_cvl_iavf_rss_gtpu.py

diff --git a/tests/TestSuite_cvl_iavf_rss_gtpu.py b/tests/TestSuite_cvl_iavf_rss_gtpu.py
new file mode 100755
index 0000000..baeff8a
--- /dev/null
+++ b/tests/TestSuite_cvl_iavf_rss_gtpu.py
@@ -0,0 +1,8962 @@
+# BSD LICENSE
+#
+# Copyright(c) 2010-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 re
+import random
+import time
+from packet import Packet
+from pmd_output import PmdOutput
+from test_case import TestCase
+from rte_flow_common import RssProcessing
+
+mac_ipv4_gtpu_ipv4_basic = {
+    'ipv4-nonfrag': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1", src="192.168.0.2")/("X"*480)',
+    'ipv4-frag': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1", src="192.168.0.2",frag=6)/("X"*480)',
+    'ipv4-icmp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1", src="192.168.0.2")/ICMP()/("X"*480)',
+    'ipv4-tcp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1", src="192.168.0.2")/TCP()/("X"*480)',
+    'ipv4-udp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1", src="192.168.0.2")/UDP()/("X"*480)',
+}
+
+mac_ipv4_gtpu_ipv4_l3src_changed_pkt = eval(str(mac_ipv4_gtpu_ipv4_basic).replace('192.168.0.2', '192.168.1.2'))
+mac_ipv4_gtpu_ipv4_l3dst_changed_pkt = eval(str(mac_ipv4_gtpu_ipv4_basic).replace('192.168.0.1', '192.168.1.1'))
+
+mac_ipv4_gtpu_ipv4_l3dst_only = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_l3dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-nonfrag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3dst_changed_pkt['ipv4-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3src_changed_pkt['ipv4-nonfrag'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-frag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3dst_changed_pkt['ipv4-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3src_changed_pkt['ipv4-frag'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-icmp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3dst_changed_pkt['ipv4-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3src_changed_pkt['ipv4-icmp'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-tcp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3dst_changed_pkt['ipv4-tcp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3src_changed_pkt['ipv4-tcp'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-udp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3dst_changed_pkt['ipv4-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3src_changed_pkt['ipv4-udp'],
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_ipv4_basic['ipv4-nonfrag'],
+                mac_ipv4_gtpu_ipv4_basic['ipv4-frag'],
+                mac_ipv4_gtpu_ipv4_basic['ipv4-icmp'],
+                mac_ipv4_gtpu_ipv4_basic['ipv4-tcp'],
+                mac_ipv4_gtpu_ipv4_basic['ipv4-udp'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv4_l3src_only = eval(str(mac_ipv4_gtpu_ipv4_l3dst_only)
+                                     .replace('mac_ipv4_gtpu_ipv4_l3dst', 'mac_ipv4_gtpu_ipv4_l3src')
+                                     .replace('l3-dst-only', 'l3-src-only')
+                                     .replace('check_hash_same', 'hash_check_different')
+                                     .replace('check_hash_different', 'check_hash_same')
+                                     .replace('hash_check_different', 'check_hash_different'))
+mac_ipv4_gtpu_ipv4_all = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_all',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-nonfrag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3dst_changed_pkt['ipv4-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3src_changed_pkt['ipv4-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-nonfrag'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-frag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3dst_changed_pkt['ipv4-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3src_changed_pkt['ipv4-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-frag'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-icmp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3dst_changed_pkt['ipv4-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3src_changed_pkt['ipv4-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-icmp'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-tcp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3dst_changed_pkt['ipv4-tcp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3src_changed_pkt['ipv4-tcp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-tcp'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-udp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3dst_changed_pkt['ipv4-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_l3src_changed_pkt['ipv4-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-udp'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_ipv4_basic['ipv4-nonfrag'],
+                mac_ipv4_gtpu_ipv4_basic['ipv4-frag'],
+                mac_ipv4_gtpu_ipv4_basic['ipv4-icmp'],
+                mac_ipv4_gtpu_ipv4_basic['ipv4-tcp'],
+                mac_ipv4_gtpu_ipv4_basic['ipv4-udp'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv4_gtpu = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_gtpu',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss types gtpu end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-nonfrag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-nonfrag'].replace('teid=0x123456', 'teid=0x12345'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-nonfrag'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-frag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-frag'].replace('teid=0x123456', 'teid=0x12345'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-frag'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-icmp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-icmp'].replace('teid=0x123456', 'teid=0x12345'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-icmp'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-udp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-udp'].replace('teid=0x123456', 'teid=0x12345'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_basic['ipv4-udp'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_ipv4_basic['ipv4-nonfrag'],
+                mac_ipv4_gtpu_ipv4_basic['ipv4-frag'],
+                mac_ipv4_gtpu_ipv4_basic['ipv4-icmp'],
+                mac_ipv4_gtpu_ipv4_basic['ipv4-tcp'],
+                mac_ipv4_gtpu_ipv4_basic['ipv4-udp'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv4_toeplitz = [mac_ipv4_gtpu_ipv4_l3dst_only, mac_ipv4_gtpu_ipv4_l3src_only,
+                               mac_ipv4_gtpu_ipv4_all, mac_ipv4_gtpu_ipv4_gtpu]
+
+mac_ipv4_gtpu_ipv4_symmetric = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_symmetric',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1",src="192.168.0.2")/("X"*480)',
+            'action': {'save_hash': 'ipv4-nonfrag'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.2",src="192.168.0.1")/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1",src="192.168.0.2", frag=6)/("X"*480)',
+            'action': {'save_hash': 'ipv4-frag'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.2",src="192.168.0.1", frag=6)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1",src="192.168.0.2")/ICMP()/("X"*480)',
+            'action': {'save_hash': 'ipv4-icmp'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.2",src="192.168.0.1")/ICMP()/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP()/("X"*480)',
+            'action': {'save_hash': 'ipv4-udp'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP()/("X"*480)',
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(src="192.168.0.1",dst="192.168.0.2")/("X"*480)',
+            'action': {'check_no_hash_or_different': 'ipv4-nonfrag'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(src="192.168.0.3",dst="192.168.0.8",frag=6)/("X"*480)',
+            'action': {'check_no_hash_or_different': 'ipv4-frag'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(src="192.168.0.10",dst="192.168.0.20")/ICMP()/("X"*480)',
+            'action': {'check_no_hash_or_different': 'ipv4-icmp'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(src="192.168.0.10",dst="192.168.0.20")/UDP()/("X"*480)',
+            'action': {'check_no_hash_or_different': 'ipv4-udp'},
+        },
+    ],
+}
+
+mac_ipv4_gtpu_ipv6_symmetric = eval(str(mac_ipv4_gtpu_ipv4_symmetric).replace('IPv6', 'IPv61')
+                                    .replace('IP(dst="192.168.0.1",src="192.168.0.2"', 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                    .replace('IP(dst="192.168.0.2",src="192.168.0.1"', 'IPv6(dst="CDCD:910A:2222:5498:8475:1111:3900:2020",src="ABAB:910B:6666:3457:8295:3333:1800:2929"')
+                                    .replace(', frag=6)', ')/IPv6ExtHdrFragment()')
+                                    .replace('IPv61(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020")', 'IP(dst="192.168.0.1",src="192.168.0.2")')
+                                    .replace('IPv61(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")', 'IP(src="192.168.0.1",dst="192.168.0.2")')
+                                    .replace('gtpu / ipv4', 'gtpu / ipv6').replace('types ipv4', 'types ipv6')
+                                    )
+
+mac_ipv4_gtpu_ipv4_udp_symmetric = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_udp_symmetric',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': {'save_hash': 'basic_with_rule'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_no_hash_or_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': 'check_no_hash_or_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_no_hash_or_different',
+        },
+    ],
+}
+
+mac_ipv4_gtpu_ipv6_udp_symmetric = eval(str(mac_ipv4_gtpu_ipv4_udp_symmetric).replace('IPv6', 'IPv61')
+                                        .replace('IP(dst="192.168.0.1",src="192.168.0.2"',
+                                                 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                        .replace('IP(dst="192.168.0.2",src="192.168.0.1"',
+                                                 'IPv6(dst="CDCD:910A:2222:5498:8475:1111:3900:2020",src="ABAB:910B:6666:3457:8295:3333:1800:2929"')
+                                        .replace(
+    'IPv61(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020")',
+    'IP(dst="192.168.0.1",src="192.168.0.2")')
+                                        .replace(
+    'IPv61(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")',
+    'IP(src="192.168.0.1",dst="192.168.0.2")')
+                                        .replace('gtpu / ipv4', 'gtpu / ipv6').replace('types ipv4-udp',
+                                                                                       'types ipv6-udp')
+                                        )
+
+mac_ipv4_gtpu_ipv4_tcp_symmetric = eval(str(mac_ipv4_gtpu_ipv4_udp_symmetric).replace('TCP(', 'TCP1(')
+                                        .replace('UDP(sport', 'TCP(sport').replace('TCP1', 'UDP')
+                                        .replace('udp / end', 'tcp / end ').replace('ipv4-udp', 'ipv4-tcp')
+                                        .replace('udp_symmetric', 'tcp_symmetric'))
+
+mac_ipv4_gtpu_ipv6_tcp_symmetric = eval(str(mac_ipv4_gtpu_ipv4_tcp_symmetric).replace('IPv6', 'IPv61')
+                                        .replace('IP(dst="192.168.0.1",src="192.168.0.2"',
+                                                 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                        .replace('IP(dst="192.168.0.2",src="192.168.0.1"',
+                                                 'IPv6(dst="CDCD:910A:2222:5498:8475:1111:3900:2020",src="ABAB:910B:6666:3457:8295:3333:1800:2929"')
+                                        .replace(
+    'IPv61(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020")',
+    'IP(dst="192.168.0.1",src="192.168.0.2")')
+                                        .replace(
+    'IPv61(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")',
+    'IP(src="192.168.0.1",dst="192.168.0.2")')
+                                        .replace('gtpu / ipv4', 'gtpu / ipv6').replace('types ipv4-tcp',
+                                                                                       'types ipv6-tcp')
+                                        )
+
+mac_ipv4_gtpu_eh_dl_ipv4_symmetric = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv4_symmetric',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1",dst="192.168.0.2")/("X"*480)',
+            'action': {'save_hash': 'ipv4-nonfrag'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.2",dst="192.168.0.1")/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.3",dst="192.168.0.8",frag=6)/("X"*480)',
+            'action': {'save_hash': 'ipv4-frag'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.8",dst="192.168.0.3",frag=6)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.10",dst="192.168.0.20")/ICMP()/("X"*480)',
+            'action': {'save_hash': 'ipv4-icmp'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.20",dst="192.168.0.10")/ICMP()/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP()/("X"*480)',
+            'action': {'save_hash': 'ipv4-udp'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP()/("X"*480)',
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/("X"*480)',
+            'action': {'check_no_hash_or_different': 'ipv4-nonfrag'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1", frag=6)/("X"*480)',
+            'action': {'check_no_hash_or_different': 'ipv4-frag'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/ICMP()/("X"*480)',
+            'action': {'check_no_hash_or_different': 'ipv4-icmp'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP()/("X"*480)',
+            'action': {'check_no_hash_or_different': 'ipv4-udp'},
+        },
+    ],
+}
+mac_ipv4_gtpu_eh_ul_ipv4_symmetric = eval(str(mac_ipv4_gtpu_eh_dl_ipv4_symmetric)
+                                          .replace('pdu_type=1', 'pdu_type=2')
+                                          .replace('pdu_type=0', 'pdu_type=1')
+                                          .replace('pdu_type=2', 'pdu_type=0')
+                                          .replace('eh_dl', 'eh_ul')
+                                          .replace('gtp_psc pdu_t is 0', 'gtp_psc pdu_t is 1')
+                                          )
+
+mac_ipv4_gtpu_eh_ipv4_symmetric = [mac_ipv4_gtpu_eh_dl_ipv4_symmetric, mac_ipv4_gtpu_eh_ul_ipv4_symmetric]
+
+mac_ipv4_gtpu_eh_dl_ipv4_udp_symmetric = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv4_udp_symmetric',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_no_hash_or_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': 'check_no_hash_or_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_no_hash_or_different',
+        },
+    ],
+}
+mac_ipv4_gtpu_eh_ul_ipv4_udp_symmetric = eval(str(mac_ipv4_gtpu_eh_dl_ipv4_udp_symmetric)
+                                              .replace('pdu_type=1', 'pdu_type=2')
+                                              .replace('pdu_type=0', 'pdu_type=1')
+                                              .replace('pdu_type=2', 'pdu_type=0')
+                                              .replace('gtp_psc pdu_t is 0', 'gtp_psc pdu_t is 1')
+                                              .replace('eh_dl', 'eh_ul'))
+mac_ipv4_gtpu_eh_ipv4_udp_symmetric = [mac_ipv4_gtpu_eh_dl_ipv4_udp_symmetric, mac_ipv4_gtpu_eh_ul_ipv4_udp_symmetric]
+
+mac_ipv4_gtpu_eh_ipv4_tcp_symmetric = [eval(str(element).replace('TCP', 'TCP1').replace('udp', 'tcp')
+                                                        .replace('UDP(sport', 'TCP(sport').replace('TCP1', 'UDP')
+                                                        .replace('ipv4 / tcp / gtpu', 'ipv4 / udp / gtpu'))
+                                       for element in mac_ipv4_gtpu_eh_ipv4_udp_symmetric]
+
+mac_ipv4_gtpu_eh_ipv6_symmetric = eval(str(mac_ipv4_gtpu_eh_ipv4_symmetric).replace('IPv6', 'IPv61')
+                                       .replace('IP(dst="192.168.0.1",src="192.168.0.2"', 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                       .replace('IP(dst="192.168.0.2",src="192.168.0.1"', 'IPv6(dst="CDCD:910A:2222:5498:8475:1111:3900:2020",src="ABAB:910B:6666:3457:8295:3333:1800:2929"')
+                                       .replace(', frag=6)', ')/IPv6ExtHdrFragment()')
+                                       .replace('IPv61(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020")', 'IP(dst="192.168.0.1",src="192.168.0.2")')
+                                       .replace('IPv61(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")', 'IP(src="192.168.0.1",dst="192.168.0.2")')
+                                       .replace('gtpu / ipv4', 'gtpu / ipv6').replace('types ipv4', 'types ipv6'))
+
+mac_ipv6_gtpu_eh_ipv6_symmetric = eval(str(mac_ipv4_gtpu_eh_ipv6_symmetric).replace('eth / ipv4', 'eth / ipv6')
+                                       .replace('IP()', 'IPv6()').replace('mac_ipv4', 'mac_ipv6')
+                                       .replace('ipv4 / end ', 'ipv6 / end ')
+                                       )
+
+mac_ipv4_gtpu_eh_ipv6_udp_symmetric = eval(str(mac_ipv4_gtpu_eh_ipv4_udp_symmetric).replace('IPv6', 'IPv61')
+                                        .replace('IP(dst="192.168.0.1",src="192.168.0.2"', 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                        .replace('IP(dst="192.168.0.2",src="192.168.0.1"', 'IPv6(dst="CDCD:910A:2222:5498:8475:1111:3900:2020",src="ABAB:910B:6666:3457:8295:3333:1800:2929"')
+                                        .replace('IPv61(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020")', 'IP(dst="192.168.0.1",src="192.168.0.2")')
+                                        .replace('IPv61(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")', 'IP(src="192.168.0.1",dst="192.168.0.2")')
+                                        .replace('gtpu / ipv4', 'gtpu / ipv6').replace('types ipv4-udp', 'types ipv6-udp')
+                                        )
+
+mac_ipv4_gtpu_eh_ipv6_tcp_symmetric = eval(str(mac_ipv4_gtpu_eh_ipv4_tcp_symmetric).replace('IPv6', 'IPv61')
+                                        .replace('IP(dst="192.168.0.1",src="192.168.0.2"', 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                        .replace('IP(dst="192.168.0.2",src="192.168.0.1"', 'IPv6(dst="CDCD:910A:2222:5498:8475:1111:3900:2020",src="ABAB:910B:6666:3457:8295:3333:1800:2929"')
+                                        .replace('IPv61(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020")', 'IP(dst="192.168.0.1",src="192.168.0.2")')
+                                        .replace('IPv61(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")', 'IP(src="192.168.0.1",dst="192.168.0.2")')
+                                        .replace('gtpu / ipv4', 'gtpu / ipv6').replace('types ipv4-tcp', 'types ipv6-tcp')
+                                        .replace('ipv4 / tcp / end ', 'ipv6 / tcp / end ')
+                                        )
+
+mac_ipv6_gtpu_eh_ipv6_tcp_symmetric = eval(str(mac_ipv4_gtpu_eh_ipv6_tcp_symmetric).replace('eth / ipv4', 'eth / ipv6')
+                                        .replace('IP()', 'IPv6()').replace('mac_ipv4', 'mac_ipv6')
+                                        )
+
+mac_ipv4_gtpu_ipv4_udp_basic = 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1", src="192.168.0.2")/UDP(sport=22,dport=23)/("X"*480)'
+
+mac_ipv4_gtpu_ipv4_udp_l3dst = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_udp_l3dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('192.168.0.1', '192.168.1.1'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('192.168.0.2', '192.168.1.2'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv4_udp_l3src = eval(str(mac_ipv4_gtpu_ipv4_udp_l3dst)
+                                    .replace('mac_ipv4_gtpu_ipv4_udp_l3dst', 'mac_ipv4_gtpu_ipv4_udp_l3src')
+                                    .replace('l3-dst-only', 'l3-src-only')
+                                    .replace('check_hash_same', 'hash_check_different')
+                                    .replace('check_hash_different', 'check_hash_same')
+                                    .replace('hash_check_different', 'check_hash_different'))
+
+mac_ipv4_gtpu_ipv4_udp_l3src_l4src = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_udp_l3src_l4src',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('192.168.0.2', '192.168.1.2'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('sport=22', 'sport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('dport=23', 'dport=33').replace('192.168.0.1',
+                                                                                                '192.168.1.1'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv4_udp_l3src_l4dst = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_udp_l3src_l4dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('192.168.0.2', '192.168.1.2'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('sport=22', 'sport=32').replace('192.168.0.1',
+                                                                                                '192.168.1.1'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv4_udp_l3dst_l4src = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_udp_l3dst_l4src',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('192.168.0.1', '192.168.1.1'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('sport=22', 'sport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('dport=23', 'dport=33').replace('192.168.0.2',
+                                                                                                '192.168.1.2'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv4_udp_l3dst_l4dst = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_udp_l3dst_l4dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('192.168.0.1', '192.168.1.1'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('sport=22', 'sport=32').replace('192.168.0.2',
+                                                                                                '192.168.1.2'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'check_no_hash_different',
+        },
+    ]
+}
+mac_ipv4_gtpu_ipv4_udp_l4dst = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_udp_l4dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('sport=22', 'sport=32')
+                .replace('192.168.0', '192.168.1'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+mac_ipv4_gtpu_ipv4_udp_l4src = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_udp_l4src',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('sport=22', 'sport=32'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('dport=23', 'dport=32')
+                .replace('192.168.0', '192.168.1'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv4_udp_all = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_udp_all',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('sport=22', 'sport=32'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('192.168.0.1', '192.168.1.1'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('192.168.0.2', '192.168.1.2'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic.replace('teid=0x123456', 'teid=0x12345'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv4_udp_toeplitz = [mac_ipv4_gtpu_ipv4_udp_l3dst, mac_ipv4_gtpu_ipv4_udp_l3src,
+                                   mac_ipv4_gtpu_ipv4_udp_l3dst_l4src, mac_ipv4_gtpu_ipv4_udp_l3dst_l4dst,
+                                   mac_ipv4_gtpu_ipv4_udp_l3src_l4src, mac_ipv4_gtpu_ipv4_udp_l3src_l4dst,
+                                   mac_ipv4_gtpu_ipv4_udp_l4src, mac_ipv4_gtpu_ipv4_udp_l4dst,
+                                   mac_ipv4_gtpu_ipv4_udp_all]
+
+mac_ipv4_gtpu_ipv4_tcp_toeplitz = [eval(str(element).replace('TCP', 'TCP1').replace('udp', 'tcp')
+                                        .replace('UDP(sport', 'TCP(sport').replace('TCP1', 'UDP')
+                                        .replace('ipv4 / tcp / gtpu', 'ipv4 / udp / gtpu'))
+                                   for element in mac_ipv4_gtpu_ipv4_udp_toeplitz]
+
+mac_ipv4_gtpu_ipv6_basic = {
+    'ipv6-nonfrag': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/("X"*480)',
+    'ipv6-frag': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/IPv6ExtHdrFragment()/("X"*480)',
+    'ipv6-icmp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/ICMP()/("X"*480)',
+    'ipv6-tcp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IPv6(''src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/TCP()/("X"*480)',
+    'ipv6-udp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP()/("X"*480)',
+}
+
+mac_ipv4_gtpu_ipv6_l3src_changed_pkt = eval(str(mac_ipv4_gtpu_ipv6_basic).replace('ABAB', '1212'))
+mac_ipv4_gtpu_ipv6_l3dst_changed_pkt = eval(str(mac_ipv4_gtpu_ipv6_basic).replace('CDCD', '3434'))
+
+mac_ipv4_gtpu_ipv6_l3dst_only = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv6_l3dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-nonfrag'],
+            'action': {'save_hash', 'ipv6-nonfrag'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-nonfrag'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-frag'],
+            'action': {'save_hash', 'ipv6-frag'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-frag'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-icmp'],
+            'action': {'save_hash', 'ipv6-icmp'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-icmp'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-tcp'],
+            'action': {'save_hash', 'ipv6-tcp'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-tcp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-tcp'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-udp'],
+            'action': {'save_hash', 'ipv6-udp'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-udp'],
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_ipv6_basic['ipv6-nonfrag'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-frag'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-icmp'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-tcp'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-udp'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv6_l3src_only = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv6_l3src_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-nonfrag'],
+            'action': {'save_hash', 'ipv6-nonfrag'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-nonfrag'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-frag'],
+            'action': {'save_hash', 'ipv6-frag'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-frag'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-icmp'],
+            'action': {'save_hash', 'ipv6-icmp'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-icmp'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-tcp'],
+            'action': {'save_hash', 'ipv6-tcp'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-tcp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-tcp'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-udp'],
+            'action': {'save_hash', 'ipv6-udp'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-udp'],
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_ipv6_basic['ipv6-nonfrag'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-frag'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-icmp'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-tcp'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-udp'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv6_all = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv6_all',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-nonfrag'],
+            'action': {'save_hash', 'ipv6-nonfrag'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-nonfrag'].replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-frag'],
+            'action': {'save_hash', 'ipv6-frag'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-frag'].replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-icmp'],
+            'action': {'save_hash', 'ipv6-icmp'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-icmp'].replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-tcp'],
+            'action': {'save_hash', 'ipv6-tcp'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-tcp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-tcp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-tcp'].replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-udp'],
+            'action': {'save_hash', 'ipv6-udp'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3dst_changed_pkt['ipv6-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_l3src_changed_pkt['ipv6-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-udp'].replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_ipv6_basic['ipv6-nonfrag'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-frag'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-icmp'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-tcp'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-udp'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv6_gtpu = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv6_gtpu',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types gtpu end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-nonfrag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-nonfrag'].replace('teid=0x123456', 'teid=0x12345'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-nonfrag'].replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-frag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-frag'].replace('teid=0x123456', 'teid=0x12345'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-frag'].replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-icmp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-icmp'].replace('teid=0x123456', 'teid=0x12345'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-icmp'].replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-udp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-udp'].replace('teid=0x123456', 'teid=0x12345'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_basic['ipv6-udp'].replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_ipv6_basic['ipv6-nonfrag'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-frag'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-icmp'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-tcp'],
+                mac_ipv4_gtpu_ipv6_basic['ipv6-udp'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv6_toeplitz = [mac_ipv4_gtpu_ipv6_l3dst_only, mac_ipv4_gtpu_ipv6_l3src_only,
+                               mac_ipv4_gtpu_ipv6_all, mac_ipv4_gtpu_ipv6_gtpu]
+
+mac_ipv4_gtpu_ipv6_udp_basic = 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=22,dport=23)/("X"*480)'
+
+mac_ipv4_gtpu_ipv6_udp_l3dst = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv6_udp_l3dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('ABAB', '1212'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv6_udp_l3src = eval(str(mac_ipv4_gtpu_ipv6_udp_l3dst)
+                                    .replace('mac_ipv4_gtpu_ipv6_udp_l3dst', 'mac_ipv4_gtpu_ipv6_udp_l3src')
+                                    .replace('l3-dst-only', 'l3-src-only')
+                                    .replace('check_hash_same', 'hash_check_different')
+                                    .replace('check_hash_different', 'check_hash_same')
+                                    .replace('hash_check_different', 'check_hash_different'))
+
+mac_ipv4_gtpu_ipv6_udp_l3src_l4src = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv6_udp_l3src_l4src',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('ABAB', '1212'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('sport=22', 'sport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('dport=23', 'dport=33').replace('CDCD', '3434'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv6_udp_l3src_l4dst = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv6_udp_l3src_l4dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('ABAB', '1212'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('sport=22', 'sport=32').replace('CDCD', '3434'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'check_no_hash_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv6_udp_l3dst_l4src = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv6_udp_l3dst_l4src',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('sport=22', 'sport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('dport=23', 'dport=33').replace('ABAB', '1212'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv6_udp_l3dst_l4dst = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv6_udp_l3dst_l4dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('sport=22', 'sport=32').replace('ABAB', '1212'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+mac_ipv4_gtpu_ipv6_udp_l4dst = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv6_udp_l4dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('sport=22', 'sport=32')
+                .replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+mac_ipv4_gtpu_ipv6_udp_l4src = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv6_udp_l4src',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('sport=22', 'sport=32'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('dport=23', 'dport=32')
+                .replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv6_udp_all = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv6_udp_all',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('sport=22', 'sport=32'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('ABAB', '1212'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic.replace('teid=0x123456', 'teid=0x12345'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_ipv6_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_ipv6_udp_toeplitz = [mac_ipv4_gtpu_ipv6_udp_l3dst, mac_ipv4_gtpu_ipv6_udp_l3src,
+                                   mac_ipv4_gtpu_ipv6_udp_l3dst_l4src, mac_ipv4_gtpu_ipv6_udp_l3dst_l4dst,
+                                   mac_ipv4_gtpu_ipv6_udp_l3src_l4src, mac_ipv4_gtpu_ipv6_udp_l3src_l4dst,
+                                   mac_ipv4_gtpu_ipv6_udp_l4src, mac_ipv4_gtpu_ipv6_udp_l4dst,
+                                   mac_ipv4_gtpu_ipv6_udp_all]
+
+mac_ipv4_gtpu_ipv6_tcp_toeplitz = [eval(str(element).replace('TCP', 'TCP1').replace('udp', 'tcp')
+                                        .replace('UDP(sport', 'TCP(sport').replace('TCP1', 'UDP')
+                                        .replace('ipv4 / tcp / gtpu', 'ipv4 / udp / gtpu'))
+                                   for element in mac_ipv4_gtpu_ipv6_udp_toeplitz]
+
+mac_ipv4_gtpu_eh_dl_ipv4_basic = {
+    'ipv4-nonfrag': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/("X"*480)',
+    'ipv4-frag': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2", frag=6)/("X"*480)',
+    'ipv4-icmp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/ICMP()/("X"*480)',
+    'ipv4-udp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP()/("X"*480)',
+    'ipv4-tcp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/TCP()/("X"*480)',
+
+}
+
+mac_ipv4_gtpu_eh_ipv4_l3src_changed_pkt = eval(
+    str(mac_ipv4_gtpu_eh_dl_ipv4_basic).replace('192.168.0.2', '192.168.1.2'))
+mac_ipv4_gtpu_eh_ipv4_l3dst_changed_pkt = eval(
+    str(mac_ipv4_gtpu_eh_dl_ipv4_basic).replace('192.168.0.1', '192.168.1.1'))
+
+mac_ipv4_gtpu_eh_dl_ipv4_l3dst_only = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv4_l3dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-nonfrag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3dst_changed_pkt['ipv4-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3src_changed_pkt['ipv4-nonfrag'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-frag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3dst_changed_pkt['ipv4-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3src_changed_pkt['ipv4-frag'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-icmp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3dst_changed_pkt['ipv4-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3src_changed_pkt['ipv4-icmp'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-udp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3dst_changed_pkt['ipv4-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3src_changed_pkt['ipv4-udp'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-tcp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3dst_changed_pkt['ipv4-tcp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3src_changed_pkt['ipv4-tcp'],
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-nonfrag'],
+                mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-frag'],
+                mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-icmp'],
+                mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-udp'],
+                mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-tcp'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv4_l3src_only = eval(str(mac_ipv4_gtpu_eh_dl_ipv4_l3dst_only)
+                                           .replace('eh_dl_ipv4_l3dst', 'eh_ul_ipv4_l3src')
+                                           .replace('l3-dst-only', 'l3-src-only')
+                                           .replace('check_hash_same', 'hash_check_different')
+                                           .replace('check_hash_different', 'check_hash_same')
+                                           .replace('hash_check_different', 'check_hash_different'))
+mac_ipv4_gtpu_eh_dl_ipv4_all = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv4_all',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-nonfrag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3dst_changed_pkt['ipv4-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3src_changed_pkt['ipv4-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-nonfrag'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-frag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3dst_changed_pkt['ipv4-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3src_changed_pkt['ipv4-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-frag'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-icmp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3dst_changed_pkt['ipv4-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3src_changed_pkt['ipv4-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-icmp'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-udp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3dst_changed_pkt['ipv4-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3src_changed_pkt['ipv4-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-udp'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-tcp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3dst_changed_pkt['ipv4-tcp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_ipv4_l3src_changed_pkt['ipv4-tcp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-tcp'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-nonfrag'],
+                mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-frag'],
+                mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-icmp'],
+                mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-udp'],
+                mac_ipv4_gtpu_eh_dl_ipv4_basic['ipv4-tcp'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+
+mac_ipv4_gtpu_eh_dl_ipv4 = [mac_ipv4_gtpu_eh_dl_ipv4_l3dst_only, mac_ipv4_gtpu_eh_dl_ipv4_l3src_only,
+                            mac_ipv4_gtpu_eh_dl_ipv4_all]
+
+mac_ipv4_gtpu_eh_ul_ipv4 = [eval(str(element).replace('pdu_type=1', 'pdu_type=2')
+                                 .replace('pdu_type=0', 'pdu_type=1').replace('pdu_type=2', 'pdu_type=0')
+                                 .replace('gtp_psc pdu_t is 0', 'gtp_psc pdu_t is 1')
+                                 .replace('eh_dl', 'eh_ul'))
+                            for element in mac_ipv4_gtpu_eh_dl_ipv4]
+
+mac_ipv4_gtpu_eh_ipv4_toeplitz = mac_ipv4_gtpu_eh_dl_ipv4 + mac_ipv4_gtpu_eh_ul_ipv4
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic = {
+    'ipv4-nonfrag': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/("X"*480)',
+    'ipv4-nonfrag_ul': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/("X"*480)',
+    'ipv4-frag': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2", frag=6)/("X"*480)',
+    'ipv4-icmp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/ICMP()/("X"*480)',
+    'ipv4-udp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP()/("X"*480)',
+
+}
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src_changed_pkt = eval(str(mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic).replace('192.168.0.2', '192.168.1.2'))
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_changed_pkt = eval(str(mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic).replace('192.168.0.1', '192.168.1.1'))
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_only = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_changed_pkt['ipv4-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src_changed_pkt['ipv4-nonfrag'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag_ul'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_changed_pkt['ipv4-nonfrag_ul'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src_changed_pkt['ipv4-nonfrag_ul'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-frag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_changed_pkt['ipv4-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src_changed_pkt['ipv4-frag'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-icmp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_changed_pkt['ipv4-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src_changed_pkt['ipv4-icmp'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-udp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_changed_pkt['ipv4-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src_changed_pkt['ipv4-udp'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag_ul'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-frag'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-icmp'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-udp'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src_only = eval(str(mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_only)
+                                           .replace('ul_dl_ipv4_l3dst', 'ul_dl_ipv4_l3src')
+                                           .replace('l3-dst-only', 'l3-src-only')
+                                           .replace('dst="192.168.0.1",src="192.168.1.2"', 'dst="192.168.0.1",src="192.168.1.3"')
+                                           .replace('dst="192.168.1.1",src="192.168.0.2"', 'dst="192.168.0.1",src="192.168.1.2"')
+                                           .replace('dst="192.168.0.1",src="192.168.1.3"', 'dst="192.168.1.1",src="192.168.0.2"')
+                                                      )
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_all = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_all',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_changed_pkt['ipv4-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src_changed_pkt['ipv4-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag_ul'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_changed_pkt['ipv4-nonfrag_ul'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src_changed_pkt['ipv4-nonfrag_ul'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag_ul'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag_ul'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-frag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_changed_pkt['ipv4-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src_changed_pkt['ipv4-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-frag'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-frag'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-icmp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_changed_pkt['ipv4-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src_changed_pkt['ipv4-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-icmp'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-icmp'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-udp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_changed_pkt['ipv4-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src_changed_pkt['ipv4-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-udp'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-udp'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag_ul'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-frag'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-icmp'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-udp'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_gtpu = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_gtpu',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types gtpu end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag_ul'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag_ul'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag_ul'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-frag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-frag'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-frag'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-icmp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-icmp'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-icmp'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-udp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-udp'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-udp'].replace('192.168.0.', '192.168.1.'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-nonfrag_ul'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-frag'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-icmp'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_basic['ipv4-udp'],
+            ],
+            'action': 'check_no_hash',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_toeplitz = [mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst_only,
+                                                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src_only,
+                                                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_all]
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic = {
+    'dl': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=22, dport=23)/("X"*480)',
+    'ul': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=22, dport=23)/("X"*480)',
+}
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_only = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['ul'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'].replace('192.168.0.1', '192.168.1.1'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'].replace('192.168.0.2', '192.168.1.2')
+                                                                              .replace('sport=22, dport=23', 'sport=32, dport=33')
+                                                                              .replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['ul'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_only = eval(str(mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_only)
+                                                      .replace('ul_dl_ipv4_udp_l3dst', 'ul_dl_ipv4_udp_l3src')
+                                                      .replace('l3-dst-only', 'l3-src-only')
+                                                      .replace('dst="192.168.0.1",src="192.168.1.2"', 'dst="192.168.0.1",src="192.168.1.3"')
+                                                      .replace('dst="192.168.1.1",src="192.168.0.2"', 'dst="192.168.0.1",src="192.168.1.2"')
+                                                      .replace('dst="192.168.0.1",src="192.168.1.3"', 'dst="192.168.1.1",src="192.168.0.2"')
+                                                      )
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4src = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4src',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['ul'].replace('sport=22', 'sport=32'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'].replace('192.168.0.2', '192.168.1.2'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'].replace('192.168.0.1', '192.168.1.1')
+                .replace('dport=23', 'dport=33')
+                .replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['ul'].replace('192.168.0.1', '192.168.1.1')
+                .replace('dport=23', 'dport=33')
+                .replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['ul'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4dst = eval(str(mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4src)
+                                                           .replace('udp_l3src_l4src', 'udp_l3src_l4dst')
+                                                           .replace('l4-src-only', 'l4-dst-only')
+                                                           .replace('sport=32, dport=23', 'sport=22, dport=34')
+                                                           .replace('sport=22, dport=33', 'sport=32, dport=23')
+                                                           )
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4src = eval(str(mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4src)
+                                                           .replace('udp_l3src_l4src', 'udp_l3dst_l4src')
+                                                           .replace('l3-src-only', 'l3-dst-only')
+                                                           .replace('dst="192.168.0.1",src="192.168.1.2"', 'dst="192.168.0.1",src="192.168.1.3"')
+                                                           .replace('dst="192.168.1.1",src="192.168.0.2"', 'dst="192.168.0.1",src="192.168.1.2"')
+                                                           .replace('dst="192.168.0.1",src="192.168.1.3"', 'dst="192.168.1.1",src="192.168.0.2"')
+                                                           )
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4dst = eval(str(mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4src)
+                                                           .replace('udp_l3dst_l4src', 'udp_l3dst_l4dst')
+                                                           .replace('l3-src-only', 'l3-dst-only')
+                                                           .replace('l4-src-only', 'l4-dst-only')
+                                                           .replace('sport=32, dport=23', 'sport=22, dport=34')
+                                                           .replace('sport=22, dport=33', 'sport=32, dport=23')
+                                                           )
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l4src_only = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l4src_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['ul'].replace('sport=22', 'sport=32'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'].replace('192.168.0', '192.168.1')
+            .replace('dport=23', 'dport=33')
+            .replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['ul'].replace('192.168.0', '192.168.1')
+            .replace('dport=23', 'dport=33')
+            .replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['ul'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l4dst_only = eval(str(mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l4src_only)
+                                                          .replace('udp_l4src_only', 'udp_l4dst_only')
+                                                          .replace('l4-src-only', 'l4-dst-only')
+                                                          .replace('sport=32, dport=23', 'sport=22, dport=34')
+                                                          .replace('sport=22, dport=33', 'sport=32, dport=23')
+                                                          )
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'].replace('sport=22', 'sport=32'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'].replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'].replace('192.168.0.1', '192.168.1.1'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'].replace('192.168.0.2', '192.168.1.2'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'].replace('0x123456', '0x12345'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['dl'],
+                mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_basic['ul'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_toeplitz = [
+    mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_only,
+    mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_only,
+    mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4dst,
+    mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4src,
+    mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4src,
+    mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4dst,
+    mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l4src_only,
+    mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l4dst_only,
+    mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp,
+]
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_toeplitz = [eval(str(element).replace('TCP', 'TCP1').replace('udp', 'tcp')
+                                           .replace('UDP(sport', 'TCP(sport').replace('TCP1', 'UDP')
+                                           .replace('ipv4 / tcp / gtpu', 'ipv4 / udp / gtpu'))
+                                      for element in mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_toeplitz]
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv6_toeplitz = [eval(str(element).replace('gtp_psc / ipv4', 'gtp_psc / ipv6')
+                                                     .replace('types ipv4', 'types ipv6')
+                                                     .replace('ul_dl_ipv4', 'ul_dl_ipv6')
+                                                     .replace(', frag=6)', ')/IPv6ExtHdrFragment()')
+                                                     .replace('IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020"','IP(dst="192.168.0.3", src="192.168.0.3"',)
+                                                     .replace('IP(dst="192.168.0.1",src="192.168.0.2"', 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                                     .replace('IP(dst="192.168.1.1",src="192.168.0.2"', 'IPv6(dst="1212:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                                     .replace('IP(dst="192.168.0.1",src="192.168.1.2"', 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="3434:910A:2222:5498:8475:1111:3900:2020"')
+                                                     .replace('IP(dst="192.168.1.1",src="192.168.1.2"', 'IPv6(dst="1212:910B:6666:3457:8295:3333:1800:2929",src="3434:910A:2222:5498:8475:1111:3900:2020"')
+                                                     .replace('IP(dst="192.168.0.3",src="192.168.0.3"', 'IP(dst="192.168.0.1",src="192.168.0.2"'))
+                                                for element in mac_ipv4_gtpu_eh_without_ul_dl_ipv4_toeplitz]
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_toeplitz = [eval(str(element).replace('gtp_psc / ipv4', 'gtp_psc / ipv6')
+                                                         .replace('ipv4-udp', 'ipv6-udp')
+                                                         .replace('ul_dl_ipv4_udp', 'ul_dl_ipv6_udp')
+                                                         .replace('IP(dst="192.168.0.1",src="192.168.0.2"', 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                                         .replace('IP(dst="192.168.1.1",src="192.168.0.2"', 'IPv6(dst="1212:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                                         .replace('IP(dst="192.168.0.1",src="192.168.1.2"', 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="3434:910A:2222:5498:8475:1111:3900:2020"')
+                                                         .replace('IP(dst="192.168.1.1",src="192.168.1.2"', 'IPv6(dst="1212:910B:6666:3457:8295:3333:1800:2929",src="3434:910A:2222:5498:8475:1111:3900:2020"'))
+                                                    for element in mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_toeplitz]
+
+mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_toeplitz = [eval(str(element).replace('gtp_psc / ipv4', 'gtp_psc / ipv6')
+                                                         .replace('ipv4 / tcp', 'ipv6 / tcp')
+                                                         .replace('ipv4-tcp', 'ipv6-tcp')
+                                                         .replace('ul_dl_ipv4_tcp', 'ul_dl_ipv6_tcp')
+                                                         .replace('IP(dst="192.168.0.1",src="192.168.0.2"', 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                                         .replace('IP(dst="192.168.1.1",src="192.168.0.2"', 'IPv6(dst="1212:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                                         .replace('IP(dst="192.168.0.1",src="192.168.1.2"', 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="3434:910A:2222:5498:8475:1111:3900:2020"')
+                                                         .replace('IP(dst="192.168.1.1",src="192.168.1.2"', 'IPv6(dst="1212:910B:6666:3457:8295:3333:1800:2929",src="3434:910A:2222:5498:8475:1111:3900:2020"'))
+                                                    for element in mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_toeplitz]
+
+mac_ipv4_gtpu_eh_dl_ipv4_udp_basic = 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1", src="192.168.0.2")/UDP(sport=22,dport=23)/("X"*480)'
+mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('192.168.0.1', '192.168.1.1'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('192.168.0.2', '192.168.1.2'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src = eval(str(mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst)
+                                          .replace('mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst',
+                                                   'mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src')
+                                          .replace('l3-dst-only', 'l3-src-only')
+                                          .replace('check_hash_same', 'hash_check_different')
+                                          .replace('check_hash_different', 'check_hash_same')
+                                          .replace('hash_check_different', 'check_hash_different'))
+
+mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src_l4src = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src_l4src',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('192.168.0.2', '192.168.1.2'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('sport=22', 'sport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('dport=23', 'dport=33').replace('192.168.0.1',
+                                                                                                      '192.168.1.1'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src_l4dst = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src_l4dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('192.168.0.2', '192.168.1.2'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('sport=22', 'sport=32').replace('192.168.0.1',
+                                                                                                      '192.168.1.1'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst_l4src = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst_l4src',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('192.168.0.1', '192.168.1.1'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('sport=22', 'sport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('dport=23', 'dport=33').replace('192.168.0.2',
+                                                                                                      '192.168.1.2'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst_l4dst = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst_l4dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('192.168.0.1', '192.168.1.1'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('sport=22', 'sport=32')
+                .replace('192.168.0.2', '192.168.1.2'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+mac_ipv4_gtpu_eh_dl_ipv4_udp_l4dst = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l4dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('sport=22', 'sport=32')
+                .replace('192.168.0', '192.168.1'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+mac_ipv4_gtpu_eh_dl_ipv4_udp_l4src = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l4src',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('sport=22', 'sport=32'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('dport=23', 'dport=32')
+                .replace('192.168.0', '192.168.1'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv4_udp_all = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv4_udp_all',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('sport=22', 'sport=32'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('192.168.0.1', '192.168.1.1'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic.replace('192.168.0.2', '192.168.1.2'),
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv4_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv4_udp_toeplitz = [mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst, mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src,
+                                         mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst_l4src,
+                                         mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst_l4dst,
+                                         mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src_l4src,
+                                         mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src_l4dst,
+                                         mac_ipv4_gtpu_eh_dl_ipv4_udp_l4src, mac_ipv4_gtpu_eh_dl_ipv4_udp_l4dst,
+                                         mac_ipv4_gtpu_eh_dl_ipv4_udp_all]
+
+mac_ipv4_gtpu_eh_ul_ipv4_udp_toeplitz = [eval(str(element).replace('pdu_type=1', 'pdu_type=2')
+                                              .replace('pdu_type=0', 'pdu_type=1').replace('pdu_type=2', 'pdu_type=0')
+                                              .replace('gtp_psc pdu_t is 0', 'gtp_psc pdu_t is 1')
+                                              .replace('eh_dl', 'eh_ul'))
+                                         for element in mac_ipv4_gtpu_eh_dl_ipv4_udp_toeplitz]
+
+mac_ipv4_gtpu_eh_ipv4_udp_toeplitz = mac_ipv4_gtpu_eh_dl_ipv4_udp_toeplitz + mac_ipv4_gtpu_eh_ul_ipv4_udp_toeplitz
+
+mac_ipv4_gtpu_eh_ipv4_tcp_toeplitz = [eval(str(element).replace('TCP', 'TCP1').replace('udp', 'tcp')
+                                           .replace('UDP(sport', 'TCP(sport').replace('TCP1', 'UDP')
+                                           .replace('ipv4 / tcp / gtpu', 'ipv4 / udp / gtpu'))
+                                      for element in mac_ipv4_gtpu_eh_ipv4_udp_toeplitz]
+
+mac_ipv4_gtpu_eh_dl_ipv6_basic = {
+    'ipv6-nonfrag': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/("X"*480)',
+    'ipv6-frag': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/IPv6ExtHdrFragment()/("X"*480)',
+    'ipv6-icmp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/ICMP()/("X"*480)',
+    'ipv6-udp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP()/("X"*480)',
+    'ipv6-tcp': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/TCP()/("X"*480)',
+}
+
+mac_ipv4_gtpu_eh_dl_ipv6_l3src_changed_pkt = eval(str(mac_ipv4_gtpu_eh_dl_ipv6_basic).replace('ABAB', '1212'))
+mac_ipv4_gtpu_eh_dl_ipv6_l3dst_changed_pkt = eval(str(mac_ipv4_gtpu_eh_dl_ipv6_basic).replace('CDCD', '3434'))
+
+mac_ipv4_gtpu_eh_dl_ipv6_l3dst_only = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv6_l3dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-nonfrag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3dst_changed_pkt['ipv6-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3src_changed_pkt['ipv6-nonfrag'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-frag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3dst_changed_pkt['ipv6-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3src_changed_pkt['ipv6-frag'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-icmp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3dst_changed_pkt['ipv6-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3src_changed_pkt['ipv6-icmp'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-udp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3dst_changed_pkt['ipv6-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3src_changed_pkt['ipv6-udp'],
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-tcp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3dst_changed_pkt['ipv6-tcp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3src_changed_pkt['ipv6-tcp'],
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-nonfrag'],
+                mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-frag'],
+                mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-icmp'],
+                mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-udp'],
+                mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-tcp'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv6_l3src_only = eval(str(mac_ipv4_gtpu_eh_dl_ipv6_l3dst_only)
+                                           .replace('mac_ipv4_gtpu_eh_dl_ipv6_l3dst', 'mac_ipv4_gtpu_eh_dl_ipv6_l3src')
+                                           .replace('l3-dst-only', 'l3-src-only')
+                                           .replace('check_hash_same', 'hash_check_different')
+                                           .replace('check_hash_different', 'check_hash_same')
+                                           .replace('hash_check_different', 'check_hash_different'))
+mac_ipv4_gtpu_eh_dl_ipv6_all = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv6_all',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-nonfrag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3dst_changed_pkt['ipv6-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3src_changed_pkt['ipv6-nonfrag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-nonfrag'].replace('ABAB', '1212').replace('CDCD',
+                                                                                                          '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-frag'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3dst_changed_pkt['ipv6-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3src_changed_pkt['ipv6-frag'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-frag'].replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-icmp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3dst_changed_pkt['ipv6-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3src_changed_pkt['ipv6-icmp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-icmp'].replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-udp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3dst_changed_pkt['ipv6-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3src_changed_pkt['ipv6-udp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-udp'].replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-tcp'],
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3dst_changed_pkt['ipv6-tcp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_l3src_changed_pkt['ipv6-tcp'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-tcp'].replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-nonfrag'],
+                mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-frag'],
+                mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-icmp'],
+                mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-udp'],
+                mac_ipv4_gtpu_eh_dl_ipv6_basic['ipv6-tcp'],
+            ],
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv6_toeplitz = [mac_ipv4_gtpu_eh_dl_ipv6_l3dst_only, mac_ipv4_gtpu_eh_dl_ipv6_l3src_only,
+                                     mac_ipv4_gtpu_eh_dl_ipv6_all]
+
+mac_ipv4_gtpu_eh_ul_ipv6_toeplitz = [eval(str(element).replace('pdu_type=1', 'pdu_type=2')
+                                          .replace('pdu_type=0', 'pdu_type=1').replace('pdu_type=2', 'pdu_type=0')
+                                          .replace('gtp_psc pdu_t is 0', 'gtp_psc pdu_t is 1')
+                                          .replace('eh_dl', 'eh_ul'))
+                                     for element in mac_ipv4_gtpu_eh_dl_ipv6_toeplitz]
+
+mac_ipv4_gtpu_eh_ipv6_toeplitz = mac_ipv4_gtpu_eh_dl_ipv6_toeplitz + mac_ipv4_gtpu_eh_ul_ipv6_toeplitz
+
+mac_ipv4_gtpu_eh_dl_ipv6_udp_basic = 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=22,dport=23)/("X"*480)'
+mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('ABAB', '1212'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src = eval(str(mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst)
+                                          .replace('mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst',
+                                                   'mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src')
+                                          .replace('l3-dst-only', 'l3-src-only')
+                                          .replace('check_hash_same', 'hash_check_different')
+                                          .replace('check_hash_different', 'check_hash_same')
+                                          .replace('hash_check_different', 'check_hash_different'))
+
+mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src_l4src = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src_l4src',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('ABAB', '1212'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('sport=22', 'sport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('dport=23', 'dport=33').replace('CDCD', '3434'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src_l4dst = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src_l4dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('ABAB', '1212'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('sport=22', 'sport=32').replace('CDCD', '3434'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'check_no_hash_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst_l4src = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst_l4src',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('sport=22', 'sport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('dport=23', 'dport=33').replace('ABAB', '1212'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst_l4dst = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst_l4dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('sport=22', 'sport=32').replace('ABAB', '1212'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+mac_ipv4_gtpu_eh_dl_ipv6_udp_l4dst = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l4dst',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('sport=22', 'sport=32')
+                .replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'check_no_hash_different',
+        },
+    ]
+}
+mac_ipv4_gtpu_eh_dl_ipv6_udp_l4src = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l4src',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('sport=22', 'sport=32'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('dport=23', 'dport=32')
+                .replace('ABAB', '1212').replace('CDCD', '3434'),
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv6_udp_all = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_dl_ipv6_udp_all',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('sport=22', 'sport=32'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('dport=23', 'dport=33'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('CDCD', '3434'),
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic.replace('ABAB', '1212'),
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': mac_ipv4_gtpu_eh_dl_ipv6_udp_basic,
+            'action': 'check_no_hash_or_different',
+        },
+    ]
+}
+
+mac_ipv4_gtpu_eh_dl_ipv6_udp_toeplitz = [mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst, mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src,
+                                         mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst_l4src,
+                                         mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst_l4dst,
+                                         mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src_l4src,
+                                         mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src_l4dst,
+                                         mac_ipv4_gtpu_eh_dl_ipv6_udp_l4src, mac_ipv4_gtpu_eh_dl_ipv6_udp_l4dst,
+                                         mac_ipv4_gtpu_eh_dl_ipv6_udp_all]
+mac_ipv4_gtpu_eh_ul_ipv6_udp_toeplitz = [eval(str(element).replace('pdu_type=1', 'pdu_type=2')
+                                              .replace('pdu_type=0', 'pdu_type=1').replace('pdu_type=2', 'pdu_type=0')
+                                              .replace('gtp_psc pdu_t is 0', 'gtp_psc pdu_t is 1')
+                                              .replace('eh_dl', 'eh_ul'))
+                                         for element in mac_ipv4_gtpu_eh_dl_ipv6_udp_toeplitz]
+mac_ipv4_gtpu_eh_ipv6_udp_toeplitz = mac_ipv4_gtpu_eh_dl_ipv6_udp_toeplitz + mac_ipv4_gtpu_eh_ul_ipv6_udp_toeplitz
+
+mac_ipv4_gtpu_eh_ipv6_tcp_toeplitz = [eval(str(element).replace('TCP', 'TCP1').replace('udp', 'tcp')
+                                           .replace('UDP(sport', 'TCP(sport').replace('TCP1', 'UDP')
+                                           .replace('ipv4 / tcp / gtpu', 'ipv4 / udp / gtpu'))
+                                      for element in mac_ipv4_gtpu_eh_ipv6_udp_toeplitz]
+
+inner_l4_mac_ipv4_gtpu_ipv4_udp_tcp = {
+    'sub_casename': 'mac_ipv4_gtpu_ipv4_udp_tcp',
+    'port_id': 0,
+    'rule': [
+       'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end',
+       'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end',
+    ],
+    'test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1",src="192.168.0.2")/TCP(sport=22,dport=23)/("X"*480)',
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=22,dport=23)/("X"*480)',
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1",src="192.168.0.2")/TCP(sport=22,dport=23)/("X"*480)',
+            'action': 'save_or_no_hash',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=22,dport=23)/("X"*480)',
+            'action': 'check_hash_same_or_no_hash',
+        },
+    ]
+}
+inner_l4_mac_ipv6_gtpu_ipv4_udp_tcp = eval(str(inner_l4_mac_ipv4_gtpu_ipv4_udp_tcp)
+                                           .replace('eth / ipv4', 'eth / ipv6')
+                                           .replace('IP()', 'IPv6()')
+                                           .replace('mac_ipv4', 'mac_ipv6'))
+inner_l4_mac_ipv4_gtpu_eh_ipv6_udp_tcp = {
+    'sub_casename': 'inner_l4_mac_ipv4_gtpu_eh_ipv6_udp_tcp',
+    'port_id': 0,
+    'rule': [
+        'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end',
+        'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end',
+    ],
+    'test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=22,dport=23)/("X"*480)',
+            'action': 'save_hash',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/TCP(sport=22,dport=23)/("X"*480)',
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=22,dport=23)/("X"*480)',
+            'action': 'save_or_no_hash',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/TCP(sport=22,dport=23)/("X"*480)',
+            'action': 'check_hash_same_or_no_hash',
+        },
+    ]
+}
+inner_l4_mac_ipv6_gtpu_eh_ipv6_udp_tcp = eval(str(inner_l4_mac_ipv4_gtpu_eh_ipv6_udp_tcp)
+                                              .replace('eth / ipv4', 'eth / ipv6')
+                                              .replace('pdu_t is 0', 'pdu_t is 1')
+                                              .replace('pdu_type=0', 'pdu_type=1')
+                                              .replace('IP()', 'IPv6()')
+                                              .replace('mac_ipv4', 'mac_ipv6'))
+inner_l4_protocal_hash = [inner_l4_mac_ipv4_gtpu_ipv4_udp_tcp, inner_l4_mac_ipv6_gtpu_ipv4_udp_tcp,
+                          inner_l4_mac_ipv4_gtpu_eh_ipv6_udp_tcp, inner_l4_mac_ipv6_gtpu_eh_ipv6_udp_tcp]
+
+mac_ipv4_gtpu_eh_ipv4_without_ul_dl_symmetric = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_ipv4_without_ul_dl_symmetric',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/("X"*480)',
+            'action': {'save_hash': 'ipv4-nonfrag'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2",frag=6)/("X"*480)',
+            'action': {'save_hash': 'ipv4-frag'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1",frag=6)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/ICMP()/("X"*480)',
+            'action': {'save_hash': 'ipv4-icmp'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/ICMP()/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': {'save_hash': 'ipv4-udp'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/("X"*480)',
+            'action': {'check_no_hash_or_different': 'ipv4-nonfrag'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2",frag=6)/("X"*480)',
+            'action': {'check_no_hash_or_different': 'ipv4-frag'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/ICMP()/("X"*480)',
+            'action': {'check_no_hash_or_different': 'ipv4-icmp'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': {'check_no_hash_or_different', 'ipv4-udp'},
+        },
+    ],
+}
+
+mac_ipv4_gtpu_eh_ipv6_without_ul_dl_symmetric = eval(str(mac_ipv4_gtpu_eh_ipv4_without_ul_dl_symmetric)
+                                                     .replace('gtp_psc / ipv4', 'gtp_psc / ipv6')
+                                                     .replace('types ipv4', 'types ipv6')
+                                                     .replace('gtpu_eh_ipv4', 'gtpu_eh_ipv6')
+                                                     .replace(',frag=6)', ')/IPv6ExtHdrFragment()')
+                                                     .replace('IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"','IP(dst="192.168.1.1", src="192.168.1.2"',)
+                                                     .replace('IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020"','IP(src="192.168.1.1", dst="192.168.1.2"',)
+                                                     .replace('IP(dst="192.168.0.1",src="192.168.0.2"', 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                                     .replace('IP(dst="192.168.0.2",src="192.168.0.1"', 'IPv6(dst="CDCD:910A:2222:5498:8475:1111:3900:2020",src="ABAB:910B:6666:3457:8295:3333:1800:2929"')
+                                                     )
+
+mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl_symmetric = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl_symmetric',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': {'save_hash': 'udp-dl'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': {'save_hash': 'udp-ul'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/UDP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': {'check_no_hash_or_different', 'udp-dl'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/UDP(sport=22, dport=23)/("X"*480)',
+            'action': {'check_no_hash_or_different', 'udp-ul'},
+        },
+    ],
+}
+mac_ipv4_gtpu_eh_ipv6_udp_without_ul_dl_symmetric = eval(str(mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl_symmetric)
+                                                         .replace('gtp_psc / ipv4', 'gtp_psc / ipv6')
+                                                         .replace('types ipv4', 'types ipv6')
+                                                         .replace('gtpu_eh_ipv4', 'gtpu_eh_ipv6')
+                                                         .replace('IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"','IP(dst="192.168.1.1", src="192.168.1.2"',)
+                                                         .replace('IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020"','IP(src="192.168.1.1", dst="192.168.1.2"',)
+                                                         .replace('IP(dst="192.168.0.1",src="192.168.0.2"', 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                                         .replace('IP(dst="192.168.0.2",src="192.168.0.1"', 'IPv6(dst="CDCD:910A:2222:5498:8475:1111:3900:2020",src="ABAB:910B:6666:3457:8295:3333:1800:2929"')
+                                                         )
+
+mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric = {
+    'sub_casename': 'mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/TCP(sport=22, dport=23)/("X"*480)',
+            'action': {'save_hash': 'udp-dl'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/TCP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/TCP(sport=22, dport=23)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/TCP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/TCP(sport=22, dport=23)/("X"*480)',
+            'action': {'save_hash': 'udp-ul'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/TCP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/TCP(sport=22, dport=23)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.2",src="192.168.0.1")/TCP(sport=23, dport=22)/("X"*480)',
+            'action': 'check_hash_same',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/TCP(sport=22, dport=23)/("X"*480)',
+            'action': {'check_no_hash_or_different', 'udp-dl'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(dst="192.168.0.1",src="192.168.0.2")/TCP(sport=22, dport=23)/("X"*480)',
+            'action': {'check_no_hash_or_different', 'udp-ul'},
+        },
+    ],
+}
+
+mac_ipv4_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric = eval(str(mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric)
+                                                         .replace('gtp_psc / ipv4', 'gtp_psc / ipv6')
+                                                         .replace('types ipv4', 'types ipv6')
+                                                         .replace('gtpu_eh_ipv4', 'gtpu_eh_ipv6')
+                                                         .replace('IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"','IP(dst="192.168.1.1", src="192.168.1.2"',)
+                                                         .replace('IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020"','IP(src="192.168.1.1", dst="192.168.1.2"',)
+                                                         .replace('IP(dst="192.168.0.1",src="192.168.0.2"', 'IPv6(dst="ABAB:910B:6666:3457:8295:3333:1800:2929",src="CDCD:910A:2222:5498:8475:1111:3900:2020"')
+                                                         .replace('IP(dst="192.168.0.2",src="192.168.0.1"', 'IPv6(dst="CDCD:910A:2222:5498:8475:1111:3900:2020",src="ABAB:910B:6666:3457:8295:3333:1800:2929"')
+                                                         )
+
+# iavf gtpc and gtpu
+# matched basic pkt
+mac_ipv4_gtpu_basic_pkt = {
+    'ipv4-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-echo-request': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'ipv4-gtpu-echo-reponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoResponse()',
+    ],
+    'vlan-ipv4-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'vlan-ipv4-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'vlan-ipv4-gtpu-echo-request': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'vlan-ipv4-gtpu-echo-reponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoResponse()',
+    ],
+}
+
+mac_ipv6_gtpu_basic_pkt = {
+    'ipv6-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-echo-request': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'ipv6-gtpu-echo-reponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'vlan-ipv6-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'vlan-ipv6-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'vlan-ipv6-gtpu-echo-request': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'vlan-ipv6-gtpu-echo-reponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+}
+
+mac_ipv4_gtpc_basic_pkt = {
+    'ipv4-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'ipv4-gtpc-EchoEesponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'ipv4-gtpc-CreatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+    ],
+    'ipv4-gtpc-CreatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+    ],
+    'ipv4-gtpc-UpdatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+    ],
+    'ipv4-gtpc-UpdatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+    ],
+    'ipv4-gtpc-DeletePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+    ],
+    'ipv4-gtpc-DeletePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+    ],
+    'ipv4-gtpc-PDUNotificationRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=27)/GTPPDUNotificationRequest()',
+    ],
+    'ipv4-gtpc-SupportedExtensionHeadersNotification': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+    ],
+    'vlan-ipv4-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'vlan-ipv4-gtpc-EchoEesponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'vlan-ipv4-gtpc-CreatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+    ],
+    'vlan-ipv4-gtpc-CreatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+    ],
+    'vlan-ipv4-gtpc-UpdatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+    ],
+    'vlan-ipv4-gtpc-UpdatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+    ],
+    'vlan-ipv4-gtpc-DeletePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+    ],
+    'vlan-ipv4-gtpc-DeletePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+    ],
+    'vlan-ipv4-gtpc-PDUNotificationRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+    ],
+    'vlan-ipv4-gtpc-SupportedExtensionHeadersNotification': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+    ]
+}
+
+mac_ipv6_gtpc_basic_pkt = {
+    'ipv6-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'ipv6-gtpc-EchoEesponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'ipv6-gtpc-CreatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+    ],
+    'ipv6-gtpc-CreatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+    ],
+    'ipv6-gtpc-UpdatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+    ],
+    'ipv6-gtpc-UpdatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+    ],
+    'ipv6-gtpc-DeletePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+    ],
+    'ipv6-gtpc-DeletePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+    ],
+    'ipv6-gtpc-PDUNotificationRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+    ],
+    'ipv6-gtpc-SupportedExtensionHeadersNotification': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+    ],
+    'vlan-ipv6-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'vlan-ipv6-gtpc-EchoEesponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'vlan-ipv6-gtpc-CreatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+    ],
+    'vlan-ipv6-gtpc-CreatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+    ],
+    'vlan-ipv6-gtpc-UpdatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+    ],
+    'vlan-ipv6-gtpc-UpdatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+    ],
+    'vlan-ipv6-gtpc-DeletePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+    ],
+    'vlan-ipv6-gtpc-DeletePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+    ],
+    'vlan-ipv6-gtpc-PDUNotificationRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+    ],
+    'vlan-ipv6-gtpc-SupportedExtensionHeadersNotification': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+    ]
+}
+
+# mismatched basic pkt
+
+mac_ipv4_gtpu_mismatched_pkt = {
+    'ipv4-gtpu-eh-ipv4': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678, gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.1.5", dst="192.168.1.7")/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-ipv4': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678, gtp_type=255)/IP(src="192.168.1.5", dst="192.168.1.7")/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-eh-ipv6': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678, gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-ipv6': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678, gtp_type=255)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'ipv4-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ]
+}
+
+mac_ipv6_gtpu_mismatched_pkt = {
+    'ipv6-gtpu-eh-ipv4': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.1.5", dst="192.168.1.7")/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-ipv4': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=255)/IP(src="192.168.1.5", dst="192.168.1.7")/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-eh-ipv6': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-ipv6': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=255)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'ipv6-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+}
+
+mac_ipv4_gtpc_mismatched_pkt = {
+    'ipv4-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-ipv4': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678, gtp_type=255)/IP(src="192.168.1.5", dst="192.168.1.7")/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-ipv6': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678, gtp_type=255)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/Raw("x"*96)',
+    ],
+    'ipv6-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ]
+}
+
+mac_ipv6_gtpc_mismatched_pkt = {
+    'ipv6-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-ipv4': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=255)/IP(src="192.168.1.5", dst="192.168.1.7")/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-ipv6': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=255)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/Raw("x"*96)',
+    ],
+    'ipv6-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ]
+}
+
+# matched change pkt
+
+mac_ipv4_gtpu_l3src_only_changed = {
+    'ipv4-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-echo-request': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'ipv4-gtpu-echo-reponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoResponse()',
+    ],
+    'vlan-ipv4-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'vlan-ipv4-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'vlan-ipv4-gtpu-echo-request': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'vlan-ipv4-gtpu-echo-reponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoResponse()',
+    ],
+}
+
+mac_ipv4_gtpu_l3dst_only_changed = {
+    'ipv4-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'ipv4-gtpu-echo-request': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'ipv4-gtpu-echo-reponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoResponse()',
+    ],
+    'vlan-ipv4-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'vlan-ipv4-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'vlan-ipv4-gtpu-echo-request': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'vlan-ipv4-gtpu-echo-reponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoResponse()',
+    ],
+}
+
+mac_ipv6_gtpu_l3src_only_changed = {
+    'ipv6-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-echo-request': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'ipv6-gtpu-echo-reponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'vlan-ipv6-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'vlan-ipv6-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'vlan-ipv6-gtpu-echo-request': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'vlan-ipv6-gtpu-echo-reponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+}
+
+mac_ipv6_gtpu_l3dst_only_changed = {
+    'ipv6-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'ipv6-gtpu-echo-request': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'ipv6-gtpu-echo-reponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'vlan-ipv6-gtpu-pay': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+    ],
+    'vlan-ipv6-gtpu-eh-pay': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+    ],
+    'vlan-ipv6-gtpu-echo-request': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'vlan-ipv6-gtpu-echo-reponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+}
+
+mac_ipv4_gtpc_l3src_only_changed = {
+    'ipv4-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'ipv4-gtpc-EchoEesponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'ipv4-gtpc-CreatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+    ],
+    'ipv4-gtpc-CreatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+    ],
+    'ipv4-gtpc-UpdatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+    ],
+    'ipv4-gtpc-UpdatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+    ],
+    'ipv4-gtpc-DeletePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+    ],
+    'ipv4-gtpc-DeletePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+    ],
+    'ipv4-gtpc-PDUNotificationRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=27)/GTPPDUNotificationRequest()',
+    ],
+    'ipv4-gtpc-SupportedExtensionHeadersNotification': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+    ],
+    'vlan-ipv4-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'vlan-ipv4-gtpc-EchoEesponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'vlan-ipv4-gtpc-CreatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+    ],
+    'vlan-ipv4-gtpc-CreatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+    ],
+    'vlan-ipv4-gtpc-UpdatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+    ],
+    'vlan-ipv4-gtpc-UpdatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+    ],
+    'vlan-ipv4-gtpc-DeletePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+    ],
+    'vlan-ipv4-gtpc-DeletePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+    ],
+    'vlan-ipv4-gtpc-PDUNotificationRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+    ],
+    'vlan-ipv4-gtpc-SupportedExtensionHeadersNotification': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+    ],
+
+}
+
+mac_ipv4_gtpc_l3dst_only_changed = {
+    'ipv4-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'ipv4-gtpc-EchoEesponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'ipv4-gtpc-CreatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+    ],
+    'ipv4-gtpc-CreatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+    ],
+    'ipv4-gtpc-UpdatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+    ],
+    'ipv4-gtpc-UpdatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+    ],
+    'ipv4-gtpc-DeletePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+    ],
+    'ipv4-gtpc-DeletePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+    ],
+    'ipv4-gtpc-PDUNotificationRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+    ],
+    'ipv4-gtpc-SupportedExtensionHeadersNotification': [
+        'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+    ],
+    'vlan-ipv4-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'vlan-ipv4-gtpc-EchoEesponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'vlan-ipv4-gtpc-CreatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+    ],
+    'vlan-ipv4-gtpc-CreatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+    ],
+    'vlan-ipv4-gtpc-UpdatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+    ],
+    'vlan-ipv4-gtpc-UpdatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+    ],
+    'vlan-ipv4-gtpc-DeletePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+    ],
+    'vlan-ipv4-gtpc-DeletePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+    ],
+    'vlan-ipv4-gtpc-PDUNotificationRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+    ],
+    'vlan-ipv4-gtpc-SupportedExtensionHeadersNotification': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+    ],
+
+}
+
+mac_ipv6_gtpc_l3src_only_changed = {
+    'ipv6-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'ipv6-gtpc-EchoEesponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'ipv6-gtpc-CreatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+    ],
+    'ipv6-gtpc-CreatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+    ],
+    'ipv6-gtpc-UpdatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+    ],
+    'ipv6-gtpc-UpdatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+    ],
+    'ipv6-gtpc-DeletePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+    ],
+    'ipv6-gtpc-DeletePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+    ],
+    'ipv6-gtpc-PDUNotificationRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+    ],
+    'ipv6-gtpc-SupportedExtensionHeadersNotification': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+    ],
+    'vlan-ipv6-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'vlan-ipv6-gtpc-EchoEesponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'vlan-ipv6-gtpc-CreatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+    ],
+    'vlan-ipv6-gtpc-CreatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+    ],
+    'vlan-ipv6-gtpc-UpdatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+    ],
+    'vlan-ipv6-gtpc-UpdatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+    ],
+    'vlan-ipv6-gtpc-DeletePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+    ],
+    'vlan-ipv6-gtpc-DeletePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+    ],
+    'vlan-ipv6-gtpc-PDUNotificationRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+    ],
+    'vlan-ipv6-gtpc-SupportedExtensionHeadersNotification': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+    ],
+
+}
+
+mac_ipv6_gtpc_l3dst_only_changed = {
+    'ipv6-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'ipv6-gtpc-EchoEesponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'ipv6-gtpc-CreatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+    ],
+    'ipv6-gtpc-CreatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+    ],
+    'ipv6-gtpc-UpdatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+    ],
+    'ipv6-gtpc-UpdatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+    ],
+    'ipv6-gtpc-DeletePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+    ],
+    'ipv6-gtpc-DeletePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+    ],
+    'ipv6-gtpc-PDUNotificationRequest': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+    ],
+    'ipv6-gtpc-SupportedExtensionHeadersNotification': [
+        'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+    ],
+    'vlan-ipv6-gtpc-EchoRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+    ],
+    'vlan-ipv6-gtpc-EchoEesponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+    ],
+    'vlan-ipv6-gtpc-CreatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+    ],
+    'vlan-ipv6-gtpc-CreatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+    ],
+    'vlan-ipv6-gtpc-UpdatePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+    ],
+    'vlan-ipv6-gtpc-UpdatePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+    ],
+    'vlan-ipv6-gtpc-DeletePDPContextRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+    ],
+    'vlan-ipv6-gtpc-DeletePDPContextResponse': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+    ],
+    'vlan-ipv6-gtpc-PDUNotificationRequest': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+    ],
+    'vlan-ipv6-gtpc-SupportedExtensionHeadersNotification': [
+        'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+    ],
+
+}
+
+# subcase
+
+mac_ipv4_gtpu_l3src_only = {
+    'sub_casename': 'mac_ipv4_gtpu_l3src_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss types ipv4 l3-src-only end '
+            'key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-pay'],
+            'action': {'save_hash': 'ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['ipv4-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.5")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-eh-pay'],
+            'action': {'save_hash': 'ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['ipv4-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.5")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-request'],
+            'action': {'save_hash': 'ipv4-gtpu-echo-request'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['ipv4-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.5")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-reponse'],
+            'action': {'save_hash': 'ipv4-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['ipv4-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.5")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-pay'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['vlan-ipv4-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.1", dst="192.168.1.5")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-eh-pay'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['vlan-ipv4-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.1", dst="192.168.1.5")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-request'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-echo-request'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['vlan-ipv4-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.1", dst="192.168.1.5")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-reponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['vlan-ipv4-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.1", dst="192.168.1.5")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        # send mismatched pkt
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-eh-ipv4'],
+             'action': 'check_no_hash',
+            #'action': {'save_hash': 'ipv4-gtpu-eh-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.5")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683, gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x35)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-ipv4'],
+             'action': 'check_no_hash',
+            #'action': {'save_hash': 'ipv4-gtpu-eh-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.5")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-eh-ipv6'],
+             'action': 'check_no_hash',
+            #'action': {'save_hash': 'ipv4-gtpu-eh-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.5")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x55)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-ipv6'],
+             'action': 'check_no_hash',
+            #'action': {'save_hash': 'ipv4-gtpu-eh-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.5")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv6-gtpu-pay'],
+             #'action': 'check_no_hash',
+            'action': {'save_hash': 'ipv6-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv6-gtpu-eh-pay'],
+             # 'action': 'check_no_hash',
+             'action': {'save_hash': 'ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpc-EchoRequest'],
+             # 'action': 'check_no_hash',
+             'action': {'save_hash': 'ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-eh-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-request'][0],
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-reponse'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-eh-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-request'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-reponse'][0],
+            ],
+            'action': 'check_hash_different',
+        },
+    ],
+}
+
+mac_ipv4_gtpu_l3dst_only = {
+    'sub_casename': 'mac_ipv4_gtpu_l3dst_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss types ipv4 l3-dst-only end '
+            'key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-pay'],
+            'action': {'save_hash': 'ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['ipv4-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-eh-pay'],
+            'action': {'save_hash': 'ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['ipv4-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': {'check_hash_same': 'ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-request'],
+            'action': {'save_hash': 'ipv4-gtpu-echo-request'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['ipv4-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-reponse'],
+            'action': {'save_hash': 'ipv4-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['ipv4-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=27,dport=2152)/GTP_U_Header(teid=0x12345685,gtp_type=0x01)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-pay'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['vlan-ipv4-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-eh-pay'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['vlan-ipv4-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-request'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-echo-request'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['vlan-ipv4-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-reponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['vlan-ipv4-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        # send mismatched pkt
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-eh-ipv4'],
+            'action': 'check_no_hash',
+            # 'action': {'save_hash': 'ipv4-gtpu-eh-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-ipv4'],
+            'action': 'check_no_hash',
+            # 'action': {'save_hash': 'ipv4-gtpu-eh-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-eh-ipv6'],
+            'action': 'check_no_hash',
+            # 'action': {'save_hash': 'ipv4-gtpu-eh-ipv6'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x55)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-ipv6'],
+            'action': 'check_no_hash',
+            # 'action': {'save_hash': 'ipv4-gtpu-ipv6'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv6-gtpu-pay'],
+            # 'action': 'check_no_hash',
+            'action': {'save_hash': 'ipv6-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv6-gtpu-eh-pay'],
+            # 'action': 'check_no_hash',
+            'action': {'save_hash': 'ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpc-EchoRequest'],
+            # 'action': 'check_no_hash',
+            'action': {'save_hash': 'ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-eh-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-request'][0],
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-reponse'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-eh-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-request'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-reponse'][0],
+            ],
+            'action': 'check_hash_different',
+        },
+    ],
+}
+
+mac_ipv4_gtpu_l3_src_only_l3_dst_only = {
+    'sub_casename': 'mac_ipv4_gtpu_l3_src_only_l3_dst_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss types ipv4 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-pay'],
+            'action': {'save_hash': 'ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['ipv4-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['ipv4-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-eh-pay'],
+            'action': {'save_hash': 'ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['ipv4-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['ipv4-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+            'action': {'check_hash_different': 'ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345691,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-request'],
+            'action': {'save_hash': 'ipv4-gtpu-echo-request'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['ipv4-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['ipv4-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345691,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-reponse'],
+            'action': {'save_hash': 'ipv4-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['ipv4-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['ipv4-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-pay'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['vlan-ipv4-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['vlan-ipv4-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-eh-pay'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['vlan-ipv4-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['vlan-ipv4-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-request'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-echo-request'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['vlan-ipv4-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['vlan-ipv4-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=21,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-reponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3dst_only_changed['vlan-ipv4-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_l3src_only_changed['vlan-ipv4-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        # mismatched pkt
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-eh-ipv4'],
+            'action': 'check_no_hash',
+            # 'action': {'save_hash': 'ipv4-gtpu-eh-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-ipv4'],
+            'action': 'check_no_hash',
+            # 'action': {'save_hash': 'ipv4-gtpu-eh-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-eh-ipv6'],
+            'action': 'check_no_hash',
+            # 'action': {'save_hash': 'ipv4-gtpu-eh-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x55)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-ipv6'],
+            'action': 'check_no_hash',
+            # 'action': {'save_hash': 'ipv4-gtpu-eh-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        # not support 20.11
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv6-gtpu-pay'],
+             'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv6-gtpu-eh-pay'],
+             'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpc-EchoRequest'],
+             'action': 'check_no_hash',
+        },
+    ],
+    # not support 20.11
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-eh-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-request'][0],
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-reponse'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-eh-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-request'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-reponse'][0],
+            ],
+            'action': 'check_no_hash',
+        },
+    ],
+}
+
+mac_ipv6_gtpu_l3src_only = {
+    'sub_casename': 'mac_ipv6_gtpu_l3src_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv6 / udp / gtpu / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-pay'],
+            'action': {'save_hash': 'ipv6-gtpu-pay'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['ipv6-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345691,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-eh-pay'],
+            'action': {'save_hash': 'ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['ipv6-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-request'],
+            'action': {'save_hash': 'ipv6-gtpu-echo-request'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['ipv6-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=25,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-reponse'],
+            'action': {'save_hash': 'ipv6-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['ipv6-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=25,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-pay'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-pay'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['vlan-ipv6-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-eh-pay'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['vlan-ipv6-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2027")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x44)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-request'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-echo-request'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['vlan-ipv6-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=25,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-reponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['vlan-ipv6-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=25,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        # mismatched pkt
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-eh-ipv4'],
+            #'action': 'check_no_hash',
+             'action': {'save_hash': 'ipv6-gtpu-eh-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x55)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-ipv4'],
+            #'action': 'check_no_hash',
+             'action': {'save_hash': 'ipv6-gtpu-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=255)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-eh-ipv6'],
+            #'action': 'check_no_hash',
+             'action': {'save_hash': 'ipv6-gtpu-eh-ipv6'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2930",dst="CDCD:910A:2222:5498:8475:1111:3900:2055")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-ipv6'],
+            #'action': 'check_no_hash',
+             'action': {'save_hash': 'ipv6-gtpu-ipv6'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=255)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2930",dst="CDCD:910A:2222:5498:8475:1111:3900:2055")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv4-gtpu-pay'],
+            #'action': 'check_no_hash',
+             'action': {'save_hash': 'ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv4-gtpu-eh-pay'],
+            #'action': 'check_no_hash',
+             'action': {'save_hash': 'ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpc-EchoRequest'],
+            #'action': 'check_no_hash',
+             'action': {'save_hash': 'ipv6-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-eh-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-request'][0],
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-reponse'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-eh-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-request'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-reponse'][0],
+            ],
+            'action': 'check_hash_different',
+        },
+    ],
+}
+
+mac_ipv6_gtpu_l3dst_only = {
+    'sub_casename': 'mac_ipv6_gtpu_l3dst_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv6 / udp / gtpu / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-pay'],
+            'action': {'save_hash': 'ipv6-gtpu-pay'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['ipv6-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-eh-pay'],
+            'action': {'save_hash': 'ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['ipv6-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-request'],
+            'action': {'save_hash': 'ipv6-gtpu-echo-request'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['ipv6-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-reponse'],
+            'action': {'save_hash': 'ipv6-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['ipv6-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345691,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-pay'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-pay'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['vlan-ipv6-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=7)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-eh-pay'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['vlan-ipv6-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-request'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-echo-request'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['vlan-ipv6-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-reponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['vlan-ipv6-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        # mismatched pkt
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-eh-ipv4'],
+            # 'action': 'check_no_hash',
+            'action': {'save_hash': 'ipv6-gtpu-eh-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x55)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-ipv4'],
+            # 'action': 'check_no_hash',
+            'action': {'save_hash': 'ipv6-gtpu-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=255)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-eh-ipv6'],
+            # 'action': 'check_no_hash',
+            'action': {'save_hash': 'ipv6-gtpu-eh-ipv6'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2930",dst="CDCD:910A:2222:5498:8475:1111:3900:2091")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-ipv6'],
+            # 'action': 'check_no_hash',
+            'action': {'save_hash': 'ipv6-gtpu-ipv6'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=255)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2930",dst="CDCD:910A:2222:5498:8475:1111:3900:2091")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv4-gtpu-pay'],
+            # 'action': 'check_no_hash',
+            'action': {'save_hash': 'ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv4-gtpu-eh-pay'],
+            # 'action': 'check_no_hash',
+            'action': {'save_hash': 'ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpc-EchoRequest'],
+            # 'action': 'check_no_hash',
+            'action': {'save_hash': 'ipv6-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-eh-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-request'][0],
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-reponse'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-eh-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-request'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-reponse'][0],
+            ],
+            'action': 'check_hash_different',
+        },
+    ],
+}
+
+mac_ipv6_gtpu_l3_src_only_l3_dst_only = {
+    'sub_casename': 'mac_ipv6_gtpu_l3_src_only_l3_dst_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv6 / udp / gtpu / end actions rss types ipv6 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-pay'],
+            'action': {'save_hash': 'ipv6-gtpu-pay'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['ipv6-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['ipv6-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-eh-pay'],
+            'action': {'save_hash': 'ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['ipv6-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['ipv6-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+            'action': 'heck_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=27,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-request'],
+            'action': {'save_hash': 'ipv6-gtpu-echo-request'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['ipv6-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['ipv6-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-reponse'],
+            'action': {'save_hash': 'ipv6-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['ipv6-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['ipv6-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-pay'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-pay'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['vlan-ipv6-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['vlan-ipv6-gtpu-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345683,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-eh-pay'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['vlan-ipv6-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['vlan-ipv6-gtpu-eh-pay'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-request'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-echo-request'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['vlan-ipv6-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['vlan-ipv6-gtpu-echo-request'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-reponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3dst_only_changed['vlan-ipv6-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_l3src_only_changed['vlan-ipv6-gtpu-echo-reponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        # mismatched pkt
+        # not support 20.11
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-eh-ipv4'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-ipv4'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-eh-ipv6'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-ipv6'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv4-gtpu-pay'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv4-gtpu-eh-pay'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpc-EchoRequest'],
+            'action': 'check_no_hash',
+        },
+    ],
+    # not support 20.11
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-eh-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-request'][0],
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-reponse'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-eh-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-request'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-reponse'][0],
+            ],
+            'action': 'check_no_hash',
+        },
+    ],
+}
+
+mac_ipv4_gtpc_l3src_only = {
+    'sub_casename': 'mac_ipv4_gtpc_l3src_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'ipv4-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'ipv4-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'ipv4-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'ipv4-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x27)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'ipv4-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        # mismatched pkt
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-pay'],
+            'action': {'save_hash', 'ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-eh-pay'],
+            'action': {'save_hash', 'ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-ipv4'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-ipv6'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv6-gtpc-EchoRequest'],
+            'action': {'save_hash', 'ipv6-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoEesponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-PDUNotificationRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-SupportedExtensionHeadersNotification'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoEesponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-PDUNotificationRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'][0],
+            ],
+            'action': 'check_hash_different',
+        },
+    ],
+}
+
+mac_ipv4_gtpc_l3dst_only = {
+    'sub_casename': 'mac_ipv4_gtpc_l3dst_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end ',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'ipv4-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'ipv4-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'ipv4-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'ipv4-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'ipv4-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.3", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        # mismatched pkt
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-pay'],
+            'action': {'save_hash': 'ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-eh-pay'],
+            'action': {'save_hash': 'ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-ipv4'],
+            # 'action': {'save_hash': 'ipv4-gtpu-ipv4'},
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-ipv6'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv6-gtpc-EchoRequest'],
+            'action': {'save_hash', 'ipv6-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoEesponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-PDUNotificationRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-SupportedExtensionHeadersNotification'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoEesponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-PDUNotificationRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'][0],
+            ],
+            'action': 'check_hash_different',
+        },
+    ],
+}
+
+mac_ipv4_gtpc_l3_src_only_l3_dst_only = {
+    'sub_casename': 'mac_ipv4_gtpc_l3_src_only_l3_dst_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 end key_len 0 queues end / end ',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'ipv4-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'ipv4-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'ipv4-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'ipv4-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'ipv4-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3dst_only_changed['vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_l3src_only_changed['vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.5", dst="192.168.1.7")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        # mismatched pkt
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-ipv4'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-ipv6'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.3")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682, gtp_type=255)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/Raw("x"*96)',
+            'action': 'check_no_hash',
+        },
+        # not support 20.11
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-pay'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-eh-pay'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv6-gtpc-EchoRequest'],
+            'action': 'check_no_hash',
+        },
+    ],
+    # not support 20.11
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoEesponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-PDUNotificationRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-SupportedExtensionHeadersNotification'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoEesponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-PDUNotificationRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'][0],
+            ],
+            'action': 'check_no_hash',
+        },
+    ],
+}
+
+mac_ipv6_gtpc_l3src_only = {
+    'sub_casename': 'mac_ipv4_gtpc_l3src_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv6 / udp / gtpc / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end ',
+    'test': [
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'ipv6-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'ipv6-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'ipv6-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'ipv6-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'ipv6-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        # mismatched pkt
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-pay'],
+            'action': {'save_hash', 'ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv6-gtpu-eh-pay'],
+            'action': {'save_hash', 'ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv6-gtpu-ipv4'],
+            'action': {'save_hash', 'ipv6-gtpu-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=255)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv6-gtpu-ipv6'],
+            'action': {'save_hash', 'ipv6-gtpu-ipv6'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=255)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2930",dst="CDCD:910A:2222:5498:8475:1111:3900:2055")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpc-EchoRequest'],
+            'action': {'save_hash', 'ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.1", dst="192.168.1.7")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoEesponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-PDUNotificationRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-SupportedExtensionHeadersNotification'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoEesponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-PDUNotificationRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'][0],
+            ],
+            'action': 'check_hash_different',
+        },
+    ],
+}
+
+mac_ipv6_gtpc_l3dst_only = {
+    'sub_casename': 'mac_ipv6_gtpc_l3dst_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv6 / udp / gtpc / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end ',
+    'test': [
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'ipv6-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'ipv6-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'ipv6-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'ipv6-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'ipv6-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=3)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        # mismatched pkt
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv6-gtpu-pay'],
+            'action': {'save_hash', 'ipv6-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv6-gtpu-eh-pay'],
+            'action': {'save_hash', 'ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x55)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv6-gtpu-ipv4'],
+            'action': {'save_hash', 'ipv6-gtpu-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=255)/IP(src="192.168.1.7", dst="192.168.1.9")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv6-gtpu-ipv6'],
+            'action': {'save_hash', 'ipv6-gtpu-ipv6'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2152)/GTP_U_Header(teid=0x12345682,gtp_type=255)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2930",dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpc-EchoRequest'],
+            'action': {'save_hash', 'ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.5", dst="192.168.1.3")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoEesponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-PDUNotificationRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-SupportedExtensionHeadersNotification'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoEesponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-PDUNotificationRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'][0],
+            ],
+            'action': 'check_hash_different',
+        },
+    ],
+}
+
+mac_ipv6_gtpc_l3_src_only_l3_dst_only = {
+    'sub_casename': 'mac_ipv6_gtpc_l3_src_only_l3_dst_only',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv6 / udp / gtpc / end actions rss types ipv6 end key_len 0 queues end / end ',
+    'test': [
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345683,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'ipv6-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'ipv6-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'ipv6-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'ipv6-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'ipv6-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-EchoRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-EchoEesponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-CreatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-CreatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-DeletePDPContextRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-DeletePDPContextResponse'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-PDUNotificationRequest'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3dst_only_changed['vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_l3src_only_changed['vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1537", dst="CDCD:910A:2222:5498:8475:1111:3900:2023")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=5)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:1536", dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/UDP(sport=23,dport=2123)/GTPHeader(teid=0x12345682,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        # mismatched pkt
+        # not support 20.11
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv6-gtpu-pay'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv6-gtpu-eh-pay'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv6-gtpu-ipv4'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv6-gtpu-ipv6'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv4-gtpc-EchoRequest'],
+            'action': 'check_no_hash',
+        },
+    ],
+    # not support 20.11
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoEesponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-PDUNotificationRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-SupportedExtensionHeadersNotification'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoEesponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-PDUNotificationRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'][0],
+            ],
+            'action': 'check_no_hash',
+        },
+    ],
+}
+
+mac_ipv4_gtpu_symmetric = {
+    'sub_casename': 'mac_ipv4_gtpu_symmetric',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-pay'],
+            'action': {'save_hash': 'ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-eh-pay'],
+            'action': {'save_hash': 'ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-request'],
+            'action': {'save_hash': 'ipv4-gtpu-echo-request'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-reponse'],
+            'action': {'save_hash': 'ipv4-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-pay'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-eh-pay'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-request'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-echo-request'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-reponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        # mismatched pkt
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-eh-ipv4'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-ipv4'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-eh-ipv6'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-ipv6'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv6-gtpu-pay'],
+            'action': {'save_hash', 'ipv6-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv6-gtpu-eh-pay'],
+            'action': {'save_hash', 'ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv6-gtpc-EchoRequest'],
+            'action': {'save_hash', 'ipv6-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-eh-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-request'][0],
+                mac_ipv4_gtpu_basic_pkt['ipv4-gtpu-echo-reponse'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-eh-pay'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-request'][0],
+                mac_ipv4_gtpu_basic_pkt['vlan-ipv4-gtpu-echo-reponse'][0],
+            ],
+            'action': 'check_hash_different',
+        },
+    ],
+}
+
+mac_ipv6_gtpu_symmetric = {
+    'sub_casename': 'mac_ipv6_gtpu_symmetric',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv6 / udp / gtpu / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-pay'],
+            'action': {'save_hash': 'ipv6-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-eh-pay'],
+            'action': {'save_hash': 'ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-request'],
+            'action': {'save_hash': 'ipv6-gtpu-echo-request'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-reponse'],
+            'action': {'save_hash': 'ipv6-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-pay'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-eh-pay'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-request'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-echo-request'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-reponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpu-echo-reponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        # mismatched pkt
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-eh-ipv4'],
+            'action': {'save_hash', 'ipv6-gtpu-eh-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.1.5", dst="192.168.1.7")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_mismatched_pkt['ipv6-gtpu-ipv4'],
+            'action': {'save_hash', 'ipv6-gtpu-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=255)/IP(src="192.168.1.5", dst="192.168.1.7")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-eh-ipv6'],
+            'action': {'save_hash', 'ipv6-gtpu-eh-ipv6'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=255)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-ipv6'],
+            'action': {'save_hash', 'ipv6-gtpu-ipv6'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=255)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv4-gtpu-pay'],
+            'action': {'save_hash', 'ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv4-gtpu-eh-pay'],
+            'action': {'save_hash', 'ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpc-EchoRequest'],
+            'action': {'save_hash', 'ipv6-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-eh-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-request'][0],
+                mac_ipv6_gtpu_basic_pkt['ipv6-gtpu-echo-reponse'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-eh-pay'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-request'][0],
+                mac_ipv6_gtpu_basic_pkt['vlan-ipv6-gtpu-echo-reponse'][0],
+            ],
+            'action': 'check_hash_different',
+        },
+    ],
+}
+
+mac_ipv4_gtpc_symmetric = {
+    'sub_casename': 'mac_ipv4_gtpc_symmetric',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'ipv4-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'ipv4-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'ipv4-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'ipv4-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'ipv4-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        # mismatched pkt
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-ipv4'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpu-ipv6'],
+            'action': 'check_no_hash',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv4-gtpu-pay'],
+            'action': {'save_hash': 'ipv4-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv4-gtpu-eh-pay'],
+            'action': {'save_hash': 'ipv4-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpc_mismatched_pkt['ipv6-gtpc-EchoRequest'],
+            'action': {'save_hash': ''},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-EchoEesponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-PDUNotificationRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['ipv4-gtpc-SupportedExtensionHeadersNotification'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-EchoEesponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-PDUNotificationRequest'][0],
+                mac_ipv4_gtpc_basic_pkt['vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'][0],
+            ],
+            'action': 'check_hash_different',
+        },
+    ],
+}
+
+mac_ipv6_gtpc_symmetric = {
+    'sub_casename': 'mac_ipv6_gtpc_symmetric',
+    'port_id': 0,
+    'rule': 'flow create 0 ingress pattern eth / ipv6 / udp / gtpc / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end',
+    'test': [
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'ipv6-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'ipv6-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'ipv6-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'ipv6-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'ipv6-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'ipv6-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoEesponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-EchoEesponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x02)/GTPEchoResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x10)/GTPCreatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextResponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x11)/GTPCreatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x12)/GTPUpdatePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextResponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x13)/GTPUpdatePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x14)/GTPDeletePDPContextRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextResponse'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextResponse'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x15)/GTPDeletePDPContextResponse()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-PDUNotificationRequest'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-PDUNotificationRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1B)/GTPPDUNotificationRequest()',
+            'action': 'check_hash_same',
+        },
+        {
+            'send_packet': mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'],
+            'action': {'save_hash': 'vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/Dot1Q(vlan=1)/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x1F)/GTPSupportedExtensionHeadersNotification()',
+            'action': 'check_hash_same',
+        },
+        # mismactched pkt
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-ipv6'],
+            'action': {'save_hash': 'ipv6-gtpu-ipv6'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=255)/IPv6(src="ABAB:910B:6666:3457:8295:3333:1800:2929",dst="CDCD:910A:2222:5498:8475:1111:3900:2020")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv6_gtpu_mismatched_pkt['ipv6-gtpu-ipv4'],
+            'action': {'save_hash': 'ipv6-gtpu-ipv4'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=255)/IP(src="192.168.1.5", dst="192.168.1.7")/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv6-gtpu-pay'],
+            'action': {'save_hash': 'ipv6-gtpu-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv6-gtpu-eh-pay'],
+            'action': {'save_hash': 'ipv6-gtpu-eh-pay'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IPv6(src="CDCD:910A:2222:5498:8475:1111:3900:2020", dst="CDCD:910A:2222:5498:8475:1111:3900:1536")/UDP(sport=20,dport=2152)/GTP_U_Header(teid=0x12345678,gtp_type=0x01)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/Raw("x"*96)',
+            'action': 'check_hash_different',
+        },
+        {
+            'send_packet': mac_ipv4_gtpu_mismatched_pkt['ipv4-gtpc-EchoRequest'],
+            'action': {'save_hash': 'ipv4-gtpc-EchoRequest'},
+        },
+        {
+            'send_packet': 'Ether(dst="00:11:22:33:44:55")/IP(src="192.168.1.3", dst="192.168.1.1")/UDP(sport=20,dport=2123)/GTPHeader(teid=0x12345678,gtp_type=0x01)/GTPEchoRequest()',
+            'action': 'check_hash_different',
+        },
+    ],
+    'post-test': [
+        {
+            'send_packet': [
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-EchoEesponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-PDUNotificationRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['ipv6-gtpc-SupportedExtensionHeadersNotification'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-EchoEesponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-CreatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-UpdatePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-DeletePDPContextResponse'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-PDUNotificationRequest'][0],
+                mac_ipv6_gtpc_basic_pkt['vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'][0],
+            ],
+            'action': 'check_hash_different',
+        },
+    ],
+}
+
+mac_ipv4_gtpu_toeplitz = [mac_ipv4_gtpu_l3src_only, mac_ipv4_gtpu_l3dst_only, mac_ipv4_gtpu_l3_src_only_l3_dst_only]
+mac_ipv6_gtpu_toeplitz = [mac_ipv6_gtpu_l3src_only, mac_ipv6_gtpu_l3dst_only, mac_ipv6_gtpu_l3_src_only_l3_dst_only]
+mac_ipv4_gtpc_toeplitz = [mac_ipv4_gtpc_l3src_only, mac_ipv4_gtpc_l3dst_only, mac_ipv4_gtpc_l3_src_only_l3_dst_only]
+mac_ipv6_gtpc_toeplitz = [mac_ipv6_gtpc_l3src_only, mac_ipv6_gtpc_l3dst_only, mac_ipv6_gtpc_l3_src_only_l3_dst_only]
+mac_ipv4_gtpu_symmetric_toeplitz = [mac_ipv4_gtpu_symmetric]
+mac_ipv6_gtpu_symmetric_toeplitz = [mac_ipv6_gtpu_symmetric]
+mac_ipv4_gtpc_symmetric_toeplitz = [mac_ipv4_gtpc_symmetric]
+mac_ipv6_gtpc_symmetric_toeplitz = [mac_ipv6_gtpc_symmetric]
+
+
+class TestCVLIAVFRSSGTPU(TestCase):
+
+    def set_up_all(self):
+        """
+        Run at the start of each test suite.
+        prerequisites.
+        """
+        # Based on h/w type, choose how many ports to use
+        self.dut_ports = self.dut.get_ports(self.nic)
+        self.verify(len(self.dut_ports) >= 2, "Insufficient ports for testing")
+        # Verify that enough threads are available
+        cores = self.dut.get_core_list("1S/4C/1T")
+        self.verify(cores is not None, "Insufficient cores for speed testing")
+        self.ports_socket = self.dut.get_numa_id(self.dut_ports[0])
+        self.tester_port0 = self.tester.get_local_port(self.dut_ports[0])
+        self.tester_port1 = self.tester.get_local_port(self.dut_ports[1])
+        self.tester_iface0 = self.tester.get_interface(self.tester_port0)
+        self.tester_iface1 = self.tester.get_interface(self.tester_port1)
+        self.pci0 = self.dut.ports_info[self.dut_ports[0]]['pci']
+        self.pci1 = self.dut.ports_info[self.dut_ports[1]]['pci']
+        self.pf0_intf = self.dut.ports_info[self.dut_ports[0]]['intf']
+
+        self.vf_driver = self.get_suite_cfg()['vf_driver']
+        if self.vf_driver is None:
+            self.vf_driver = 'vfio-pci'
+        self.used_dut_port_0 = self.dut_ports[0]
+        self.dut.generate_sriov_vfs_by_port(self.used_dut_port_0, 1, driver=self.kdriver)
+        self.sriov_vfs_port = self.dut.ports_info[self.used_dut_port_0]['vfs_port']
+        self.dut.send_expect('ip link set %s vf 0 mac 00:11:22:33:44:55' % self.pf0_intf, '#')
+        self.vf0_pci = self.sriov_vfs_port[0].pci
+        for port in self.sriov_vfs_port:
+            port.bind_driver(self.vf_driver)
+
+        self.pkt = Packet()
+        self.pmd_output = PmdOutput(self.dut)
+        self.launch_testpmd()
+        self.symmetric = False
+        self.rxq = 16
+        self.rssprocess = RssProcessing(self, self.pmd_output, [self.tester_iface0, self.tester_iface1], self.rxq)
+        self.logger.info('rssprocess.tester_ifaces: {}'.format(self.rssprocess.tester_ifaces))
+        self.logger.info('rssprocess.test_case: {}'.format(self.rssprocess.test_case))
+
+    def set_up(self):
+        """
+        Run before each test case.
+        """
+        self.pmd_output.execute_cmd("start")
+
+    def destroy_vf(self):
+        self.dut.send_expect("quit", "# ", 60)
+        time.sleep(2)
+        self.dut.destroy_sriov_vfs_by_port(self.dut_ports[0])
+
+    def launch_testpmd(self, symmetric=False):
+        if symmetric:
+            param = "--rxq=16 --txq=16"
+        else:
+            # if support add --disable-rss
+            param = "--rxq=16 --txq=16"
+        self.pmd_output.start_testpmd(cores="1S/4C/1T", param=param,
+                                          eal_param=f"-w {self.vf0_pci}", socket=self.ports_socket)
+        '''
+        self.symmetric = symmetric
+        if symmetric:
+            # Need config rss in setup
+            self.pmd_output.execute_cmd("port config all rss all")
+        '''
+        self.pmd_output.execute_cmd("set fwd rxonly")
+        self.pmd_output.execute_cmd("set verbose 1")
+        res = self.pmd_output.wait_link_status_up('all', timeout=15)
+        self.verify(res is True, 'there have port link is down')
+
+    def switch_testpmd(self, symmetric=True):
+        if symmetric != self.symmetric:
+            self.pmd_output.quit()
+            self.launch_testpmd(symmetric=symmetric)
+            self.pmd_output.execute_cmd("start")
+
+    def test_mac_ipv4_gtpu_ipv4(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_ipv4_toeplitz)
+
+    def test_mac_ipv4_gtpu_ipv4_udp(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_ipv4_udp_toeplitz)
+
+    def test_mac_ipv4_gtpu_ipv4_tcp(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_ipv4_tcp_toeplitz)
+
+    def test_mac_ipv4_gtpu_ipv6(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_ipv6_toeplitz)
+
+    def test_mac_ipv4_gtpu_ipv6_udp(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_ipv6_udp_toeplitz)
+
+    def test_mac_ipv4_gtpu_ipv6_tcp(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_ipv6_tcp_toeplitz)
+
+    def test_mac_ipv6_gtpu_ipv4(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_ipv4_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_ipv4_udp(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_ipv4_udp_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_ipv4_tcp(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_ipv4_tcp_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_ipv6(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_ipv6_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_ipv6_udp(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_ipv6_udp_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_ipv6_tcp(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_ipv6_tcp_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv4_gtpu_eh_ipv4(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv4_toeplitz)
+
+    def test_mac_ipv4_gtpu_eh_ipv4_udp(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv4_udp_toeplitz)
+
+    def test_mac_ipv4_gtpu_eh_ipv4_tcp(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv4_tcp_toeplitz)
+
+    def test_mac_ipv4_gtpu_eh_ipv6(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv6_toeplitz)
+
+    def test_mac_ipv4_gtpu_eh_ipv6_udp(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv6_udp_toeplitz)
+
+    def test_mac_ipv4_gtpu_eh_ipv6_tcp(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv6_tcp_toeplitz)
+
+    def test_mac_ipv6_gtpu_eh_ipv4(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv4_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv4_udp(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv4_udp_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv4_tcp(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv4_tcp_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv6(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv6_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv6_udp(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv6_udp_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv6_tcp(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv6_tcp_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv4_gtpu_eh_ipv4_without_ul_dl(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_without_ul_dl_ipv4_toeplitz)
+
+    def test_mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_toeplitz)
+
+    def test_mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_toeplitz)
+
+    def test_mac_ipv4_gtpu_eh_ipv6_without_ul_dl(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_without_ul_dl_ipv6_toeplitz)
+
+    def test_mac_ipv4_gtpu_eh_ipv6_udp_without_ul_dl(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_toeplitz)
+
+    def test_mac_ipv4_gtpu_eh_ipv6_tcp_without_ul_dl(self):
+        self.switch_testpmd(symmetric=False)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_toeplitz)
+
+    def test_mac_ipv6_gtpu_eh_ipv4_without_ul_dl(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_without_ul_dl_ipv4_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv4_udp_without_ul_dl(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv4_tcp_without_ul_dl(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv6_without_ul_dl(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_without_ul_dl_ipv6_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv6_udp_without_ul_dl(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv6_tcp_without_ul_dl(self):
+        self.switch_testpmd(symmetric=False)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_toeplitz)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv4_gtpu_ipv4_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_ipv4_symmetric)
+
+    def test_mac_ipv4_gtpu_ipv4_udp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_ipv4_udp_symmetric)
+
+    def test_mac_ipv4_gtpu_ipv4_tcp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_ipv4_tcp_symmetric)
+
+    def test_mac_ipv4_gtpu_ipv6_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_ipv6_symmetric)
+
+    def test_mac_ipv4_gtpu_ipv6_udp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_ipv6_udp_symmetric)
+
+    def test_mac_ipv4_gtpu_ipv6_tcp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_ipv6_tcp_symmetric)
+
+    def test_mac_ipv6_gtpu_ipv4_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_ipv4_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_ipv4_udp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_ipv4_udp_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_ipv4_tcp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_ipv4_tcp_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_ipv6_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_ipv6_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_ipv6_udp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_ipv6_udp_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_ipv6_tcp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_ipv6_tcp_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv4_gtpu_eh_ipv4_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv4_symmetric)
+
+    def test_mac_ipv4_gtpu_eh_ipv4_udp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv4_udp_symmetric)
+
+    def test_mac_ipv4_gtpu_eh_ipv4_tcp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv4_tcp_symmetric)
+
+    def test_mac_ipv4_gtpu_eh_ipv6_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv4_symmetric)
+
+    def test_mac_ipv4_gtpu_eh_ipv6_udp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv4_udp_symmetric)
+
+    def test_mac_ipv4_gtpu_eh_ipv6_tcp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv6_tcp_symmetric)
+
+    def test_mac_ipv6_gtpu_eh_ipv4_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv4_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv4_udp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv4_tcp_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv4_tcp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv4_tcp_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv6_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv6_gtpu_eh_ipv6_symmetric)
+
+    def test_mac_ipv6_gtpu_eh_ipv6_udp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv6_tcp_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv6_tcp_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv6_gtpu_eh_ipv6_tcp_symmetric)
+
+    def test_mac_ipv4_gtpu_eh_ipv4_without_ul_dl_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv4_without_ul_dl_symmetric)
+
+    def test_mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl_symmetric)
+
+    def test_mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric)
+
+    def test_mac_ipv4_gtpu_eh_ipv6_without_ul_dl_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv6_without_ul_dl_symmetric)
+
+    def test_mac_ipv4_gtpu_eh_ipv6_udp_without_ul_dl_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv6_udp_without_ul_dl_symmetric)
+
+    def test_mac_ipv4_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric)
+
+    def test_mac_ipv6_gtpu_eh_ipv4_without_ul_dl_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv4_without_ul_dl_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv4_udp_without_ul_dl_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv6_without_ul_dl_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv6_without_ul_dl_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv6_udp_without_ul_dl_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv6_udp_without_ul_dl_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_mac_ipv6_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric(self):
+        self.switch_testpmd(symmetric=True)
+        ipv6_template = self.rssprocess.get_ipv6_template_by_ipv4(mac_ipv4_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=ipv6_template)
+
+    def test_inner_l4_protocal_hash(self):
+        self.switch_testpmd(symmetric=True)
+        self.rssprocess.handle_rss_distribute_cases(cases_info=inner_l4_protocal_hash)
+
+    def test_negative_cases(self):
+        negative_rules = [
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-tcp end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4 end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 gtpu end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types udp end key_len 0 queues end / end']
+        self.rssprocess.create_rule(rule=negative_rules, check_stats=False, msg="Failed to create parser engine.: Invalid argument")
+
+    def test_symmetric_negative_cases(self):
+        rules = [
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types gtpu end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 l3-dst-only end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types tcp end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp l3-src-only end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp l4-dst-only end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end'
+        ]
+        self.rssprocess.create_rule(rule=rules, check_stats=False)
+
+    def test_stress_cases(self):
+        # Subcase: add/delete IPV4_GTPU_UL_IPV4_TCP rules
+        self.switch_testpmd()
+        rule1 = 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end'
+        for _ in range(100):
+            self.pmd_output.execute_cmd(rule1)
+            self.pmd_output.execute_cmd('flow destroy 0 rule 0')
+        rule_li = self.rssprocess.create_rule(rule=rule1)
+        out = self.pmd_output.execute_cmd('flow list 0')
+        p = re.compile("^(\d+)\s")
+        li = out.splitlines()
+        res = list(filter(bool, list(map(p.match, li))))
+        result = [i.group(1) for i in res]
+        self.verify(result == rule_li, 'should only rule 0 existed')
+        pkts1 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/TCP(sport=22, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.1.1", dst="192.168.0.2")/TCP(sport=22, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/TCP(sport=32, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x12345)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.1.2")/TCP(sport=22, dport=33)/("X"*480)', ]
+        output = self.rssprocess.send_pkt_get_output(pkts=pkts1)
+        hash_values1, rss_distribute = self.rssprocess.get_hash_verify_rss_distribute(output)
+        self.verify(hash_values1[1] != hash_values1[0] and hash_values1[2] != hash_values1[0] and hash_values1[3] ==
+                    hash_values1[0],
+                    'packet 2 and packet 3 should have different hash value with packet 1, packet 4 should has same hash value with packet 1.')
+        self.pmd_output.execute_cmd('flow flush 0')
+        # Subcase: add/delete IPV4_GTPU_DL_IPV4 rules
+        rule2 = 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end'
+        for _ in range(100):
+            self.pmd_output.execute_cmd(rule2)
+            self.pmd_output.execute_cmd('flow destroy 0 rule 0')
+        rule_li = self.rssprocess.create_rule(rule=rule2)
+        out = self.pmd_output.execute_cmd('flow list 0')
+        p = re.compile("^(\d+)\s")
+        li = out.splitlines()
+        res = list(filter(bool, list(map(p.match, li))))
+        result = [i.group(1) for i in res]
+        self.verify(result == rule_li, 'should only rule 0 existed')
+        pkts2 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.1.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x12345)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.1.1", dst="192.168.0.2")/("X"*480)', ]
+        output = self.rssprocess.send_pkt_get_output(pkts=pkts2)
+        hash_values2, rss_distribute = self.rssprocess.get_hash_verify_rss_distribute(output)
+        self.verify(hash_values2[1] != hash_values2[0] and hash_values2[2] == hash_values2[0],
+                    'packet 2 should has different hash value with packet 1, packet 3 should has same hash value with packet 1.')
+
+    def test_multirules(self):
+        self.switch_testpmd()
+        self.logger.info('Subcase: IPV4_GTPU_IPV4/IPV4_GTPU_EH_IPV4')
+        self.logger.info('Subcase: IPV4_GTPU_EH_IPV4 with/without UL/DL')
+        self.logger.info('Subcase: IPV4_GTPU_EH_IPV4 without/with UL/DL')
+        self.logger.info('Subcase: IPV4_GTPU_EH_IPV4 and IPV4_GTPU_EH_IPV4_UDP')
+        self.logger.info('Subcase: IPV6_GTPU_EH_IPV6 and IPV6_GTPU_EH_IPV6_TCP')
+        self.logger.info('Subcase: IPV4_GTPU_EH_IPV6 and IPV4_GTPU_EH_IPV6_UDP without UL/DL')
+        self.logger.info('Subcase: IPV6_GTPU_IPV4 and IPV6_GTPU_IPV4_TCP')
+
+    def test_ipv4_gtpu_ipv4_ipv4_gtpu_eh_ipv4(self):
+        self.switch_testpmd()
+        rules = [
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end'
+        ]
+        pkts1 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(src="192.168.0.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(src="192.168.0.1", dst="192.168.10.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IP(src="192.168.10.1", dst="192.168.0.2")/("X"*480)'
+        ]
+        pkts2 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.10.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.10.2")/("X"*480)'
+        ]
+        pkts3 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.10.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.10.2")/("X"*480)'
+        ]
+        rule_li1 = self.rssprocess.create_rule(rule=rules[0])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        rule_li2 = self.rssprocess.create_rule(rule=rules[1])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts2)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts3)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3rd and different with 2nd')
+
+        self.rssprocess.destroy_rule(port_id=0, rule_id=rule_li1)
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(all([i == '0' for i in hash_value]),
+                    'got wrong hash, expect not got rss hash and distribute to queue 0')
+
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts2)
+        self.verify(hash_value[0] != hash_value[1] and hash_value[0] == hash_value[2],
+                    'got wrong hash, expect 1st hash equal to 3rd and different with 2nd')
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts3)
+        self.verify(hash_value[0] != hash_value[1] and hash_value[0] == hash_value[2],
+                    'got wrong hash, expect 1st hash equal to 3rd and different with 2nd')
+
+        self.rssprocess.create_rule(rule=rules[0])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts2)
+        self.verify(hash_value[0] != hash_value[1] and hash_value[0] == hash_value[2],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+        self.rssprocess.destroy_rule(port_id=0, rule_id=rule_li2)
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts2 + pkts3)
+        self.verify(all([i == '0' for i in hash_value]),
+                    'got wrong hash, expect not got rss hash and distribute to queue 0')
+
+    def test_ipv4_gtpu_eh_ipv4_with_without_ul_dl(self):
+        self.switch_testpmd(True)
+        rules = [
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end']
+        pkts1 = [
+                'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/("X"*480)',
+                'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.10.2")/("X"*480)',
+                'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.10.1", dst="192.168.0.2")/("X"*480)',
+        ]
+
+        pkts2 = [
+                'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/("X"*480)',
+                'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.10.1", dst="192.168.0.2")/("X"*480)',
+                'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.10.2")/("X"*480)'
+        ]
+
+        pkts3 = [
+                'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/("X"*480)',
+                'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.10.1", dst="192.168.0.2")/("X"*480)',
+                'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.10.2")/("X"*480)'
+        ]
+        rule_li1 = self.rssprocess.create_rule(rule=rules[0])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        rule_li2 = self.rssprocess.create_rule(rule=rules[1])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts2)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts3)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        self.rssprocess.destroy_rule(port_id=0, rule_id=rule_li2)
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts3 + pkts2)
+        self.verify(all([i == '0' for i in hash_value]),
+                    'got wrong hash, expect not got rss hash and distribute to queue 0')
+
+    def test_ipv4_gtpu_eh_ipv4_without_with_ul_dl(self):
+        self.switch_testpmd()
+        rules = [
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end'
+        ]
+        pkts1 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.10.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.10.2")/("X"*480)'
+        ]
+        pkts2 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.10.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.10.2")/("X"*480)'
+        ]
+        pkts3 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.10.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.10.1", dst="192.168.0.2")/("X"*480)'
+        ]
+        rule1 = self.rssprocess.create_rule(rules[0])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts2)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        rule2 = self.rssprocess.create_rule(rules[1])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts3)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        self.rssprocess.destroy_rule(port_id=0, rule_id=rule1)
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts1)
+        self.verify(all([i == '0' for i in hash_value]),
+                    'got wrong hash, expect not got rss hash and distribute to queue 0')
+
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts3)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+
+    def test_ipv4_gtpu_eh_ipv4_and_ipv4_gtpu_eh_ipv4_udp(self):
+        self.switch_testpmd()
+        pkts1 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/UDP(sport=22, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/UDP(sport=22, dport=13)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.10.1", dst="192.168.10.2")/UDP(sport=12, dport=23)/("X"*480)'
+        ]
+        pkts2 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.10.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.10.2")/("X"*480)'
+        ]
+        rules = [
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end'
+        ]
+
+        rule_li1 = self.rssprocess.create_rule(rule=rules[0])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        rule_li2 = self.rssprocess.create_rule(rule=rules[1])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts2)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        self.rssprocess.destroy_rule(rule_id=rule_li2)
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        rule_li2 = self.rssprocess.create_rule(rule=rules[1])
+        self.rssprocess.destroy_rule(rule_id=rule_li1)
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts2)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+    def test_ipv6_gtpu_eh_ipv6_and_ipv6_gtpu_eh_ipv6_tcp(self):
+        self.switch_testpmd()
+        pkts1 = [
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/TCP(sport=22, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/TCP(sport=22, dport=13)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/TCP(sport=12, dport=23)/("X"*480)', ]
+        pkts2 = [
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:1111")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:1111", dst="2222:3333:4444:5555:6666:7777:8888:9999")/("X"*480)'
+        ]
+
+        rules = [
+            'flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end'
+        ]
+
+        rule_li1 = self.rssprocess.create_rule(rule=rules[0])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        rule_li2 = self.rssprocess.create_rule(rule=rules[1])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts2)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and 2rd')
+
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(hash_value[0] == hash_value[1] and hash_value[1] == hash_value[2],
+                    'except all hash same hash')
+
+        self.rssprocess.destroy_rule(rule_id=rule_li2)
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts2)
+        self.verify(hash_value[0] != hash_value[1] and hash_value[2] != hash_value[1],
+                    'except all the packets hash different hash value')
+
+    def test_ipv4_gtpu_eh_ipv6_and_ipv4_gtpu_eh_ipv6_udp_without_ul_dl(self):
+        self.switch_testpmd()
+        pkts1 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/UDP(sport=22, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/UDP(sport=22, dport=13)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:1111", dst="2222:3333:4444:5555:6666:7777:8888:1111")/UDP(sport=12, dport=23)/("X"*480)'
+        ]
+        pkts2 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:1111")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:1111", dst="2222:3333:4444:5555:6666:7777:8888:9999")/("X"*480)'
+        ]
+        rules = [
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end'
+        ]
+
+        rule_li1 = self.rssprocess.create_rule(rule=rules[0])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        rule_li2 = self.rssprocess.create_rule(rule=rules[1])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts2)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(hash_value[0] == hash_value[1] and hash_value[0] != hash_value[2],
+                    'got wrong hash, expect 1st hash equal to 2nd and different with 3rd')
+
+    def test_ipv6_gtpu_ipv4_and_ipv6_gtpu_ipv4_tcp(self):
+        self.switch_testpmd()
+        pkts1 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/TCP(sport=22, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/TCP(sport=12, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:1111", dst="2222:3333:4444:5555:6666:7777:8888:1111")/TCP(sport=22, dport=13)/("X"*480)'
+        ]
+        pkts2 = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:1111", dst="2222:3333:4444:5555:6666:7777:8888:9999")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:1111")/("X"*480)'
+        ]
+        rules = [
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end',
+            'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end'
+        ]
+
+        rule_li1 = self.rssprocess.create_rule(rule=rules[0])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        rule_li2 = self.rssprocess.create_rule(rule=rules[1])
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts2)
+        self.verify(hash_value[0] == hash_value[2] and hash_value[0] != hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 3nd and different with 2rd')
+
+        hash_value, queues = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts1)
+        self.verify(hash_value[0] != hash_value[2] and hash_value[0] == hash_value[1],
+                    'got wrong hash, expect 1st hash equal to 2nd and different with 3rd')
+
+    def test_toeplitz_symmetric_combination(self):
+        self.switch_testpmd()
+        self.logger.info('Subcase: toeplitz/symmetric with same pattern')
+        # step 1
+        rule_toeplitz = 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end'
+        rule_id_toeplitz = self.rssprocess.create_rule(rule=rule_toeplitz)
+        self.rssprocess.check_rule(rule_list=rule_id_toeplitz)
+        pkts_toeplitz = [
+                    'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/("X"*480)',
+                    'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.10.2")/("X"*480)',
+                    'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.10.1", dst="192.168.0.2")/("X"*480)']
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        self.verify(hash_value[1] != hash_value[0], 'second packet should hash value different from the first packet')
+        self.verify(hash_value[2] == hash_value[0], 'third packet should hash value same with the first packet')
+        # step 2
+        rule_symmetric = 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end'
+        rule_id_symmetric = self.rssprocess.create_rule(rule=rule_symmetric)
+        pkts_symmetric =[
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1",dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.2",dst="192.168.0.1")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.3",dst="192.168.0.8",frag=6)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.8",dst="192.168.0.3",frag=6)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.10",dst="192.168.0.20")/ICMP()/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.20",dst="192.168.0.10")/ICMP()/("X"*480)',
+        ]
+        self.rssprocess.check_rule(rule_list=rule_id_symmetric)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_symmetric)
+        self.verify(hash_value[0] == hash_value[1], 'expect hash_value[0] == hash_value[1]')
+        self.verify(hash_value[2] == hash_value[3], 'expect hash_value[2] == hash_value[3]')
+        self.verify(hash_value[4] == hash_value[5], 'expect hash_value[4] == hash_value[5]')
+        # step 3
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        for temp in range(len(hash_value)):
+            self.verify(len(hash_value[temp]) != 0, 'all the toeplitz packet should have hash value')
+        #step 4
+        self.rssprocess.destroy_rule(rule_id=rule_id_symmetric)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        self.verify(len(hash_value) == 0, 'all the toeplitz packet should have no hash value')
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_symmetric)
+        self.verify(len(hash_value) == 0, 'all the symmetric packet should have no hash value')
+        self.pmd_output.execute_cmd('flow flush 0')
+
+        self.logger.info('Subcase: toeplitz/symmetric with same ptype different UL/DL')
+        # step 1
+        rule_toeplitz = 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end'
+        pkts_toeplitz = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.10.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.10.1", dst="192.168.0.2")/("X"*480)'
+        ]
+        rule_symmetric = 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end'
+        pkts_symmetric = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.1",dst="192.168.0.2")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.2",dst="192.168.0.1")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.3",dst="192.168.0.8",frag=6)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.8",dst="192.168.0.3",frag=6)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.10",dst="192.168.0.20")/ICMP()/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IP(src="192.168.0.20",dst="192.168.0.10")/ICMP()/("X"*480)'
+        ]
+        rule_id_toeplitz = self.rssprocess.create_rule(rule=rule_toeplitz)
+        self.rssprocess.check_rule(rule_list=rule_id_toeplitz)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        self.verify(hash_value[1] != hash_value[0], 'second packet should hash value different from the first packet')
+        self.verify(hash_value[2] == hash_value[0], 'third packet should hash value same with the first packet')
+        rule_id_symmetric = self.rssprocess.create_rule(rule=rule_symmetric)
+        self.rssprocess.check_rule(rule_list=rule_id_symmetric)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_symmetric)
+        self.verify(hash_value[0] == hash_value[1], 'expect hash_value[0] == hash_value[1]')
+        self.verify(hash_value[2] == hash_value[3], 'expect hash_value[2] == hash_value[3]')
+        self.verify(hash_value[4] == hash_value[5], 'expect hash_value[4] == hash_value[5]')
+        # step 2
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        self.verify(hash_value[1] != hash_value[0], 'second packet should hash value different from the first packet')
+        self.verify(hash_value[2] == hash_value[0], 'third packet should hash value same with the first packet')
+        # step 3
+        self.rssprocess.destroy_rule(rule_id=rule_id_symmetric)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_symmetric)
+        self.verify(len(hash_value) == 0, 'all the symmetric packet should have no hash value')
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        self.verify(hash_value[1] != hash_value[0], 'second packet should hash value different from the first packet')
+        self.verify(hash_value[2] == hash_value[0], 'third packet should hash value same with the first packet')
+        rule_id_symmetric = self.rssprocess.create_rule(rule=rule_symmetric)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_symmetric)
+        self.verify(hash_value[0] == hash_value[1], 'expect hash_value[0] == hash_value[1]')
+        self.verify(hash_value[2] == hash_value[3], 'expect hash_value[2] == hash_value[3]')
+        self.verify(hash_value[4] == hash_value[5], 'expect hash_value[4] == hash_value[5]')
+
+        self.rssprocess.destroy_rule(rule_id=rule_id_toeplitz)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_symmetric)
+        self.verify(all([i != '0' for i in hash_value]), 'expect symmetric also can work')
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        self.verify(len(hash_value) == 0, "except toeplitz cant't work")
+        self.pmd_output.execute_cmd('flow flush 0')
+
+        self.logger.info('Subcase: toeplitz/symmetric with different pattern')
+        # step 1
+        rule_toeplitz = 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end'
+        pkts_toeplitz = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/UDP(sport=22, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.10.1", dst="192.168.0.2")/UDP(sport=22, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.0.2")/UDP(sport=12, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IP(src="192.168.0.1", dst="192.168.10.2")/UDP(sport=22, dport=13)/("X"*480)'
+        ]
+        rule_symmetric = 'flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end'
+        pkts_symmetric = [
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888",dst="2222:3333:4444:5555:6666:7777:8888:9999")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IPv6(src="2222:3333:4444:5555:6666:7777:8888:9999",dst="1111:2222:3333:4444:5555:6666:7777:8888")/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:ABCD",dst="1111:2222:3333:4444:5555:6666:7777:1234")/IPv6ExtHdrFragment()/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:1234",dst="1111:2222:3333:4444:5555:6666:7777:ABCD")/IPv6ExtHdrFragment()/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:1888",dst="2222:3333:4444:5555:6666:7777:8888:1999")/ICMP()/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IP()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IPv6(src="2222:3333:4444:5555:6666:7777:8888:1999",dst="1111:2222:3333:4444:5555:6666:7777:1888")/ICMP()/("X"*480)'
+        ]
+        rule_id_toeplitz = self.rssprocess.create_rule(rule=rule_toeplitz)
+        self.rssprocess.check_rule(rule_list=rule_id_toeplitz)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        self.verify(hash_value[1] != hash_value[0], 'hash_value[1] should hash value different from hash_value[0]')
+        self.verify(hash_value[2] != hash_value[0], 'hash_value[2] should hash value different with hash_value[0]')
+        self.verify(hash_value[3] == hash_value[0], 'hash_value[3] should hash value same with hash_value[0]')
+        rule_id_symmetric = self.rssprocess.create_rule(rule=rule_symmetric)
+        self.rssprocess.check_rule(rule_list=rule_id_symmetric)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_symmetric)
+        self.verify(hash_value[0] == hash_value[1], 'expect hash_value[0] == hash_value[1]')
+        self.verify(hash_value[2] == hash_value[3], 'expect hash_value[2] == hash_value[3]')
+        self.verify(hash_value[4] == hash_value[5], 'expect hash_value[4] == hash_value[5]')
+        # step 2
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        self.verify(hash_value[1] != hash_value[0], 'hash_value[1] should hash value different from hash_value[0]')
+        self.verify(hash_value[2] != hash_value[0], 'hash_value[2] should hash value different with hash_value[0]')
+        self.verify(hash_value[3] == hash_value[0], 'hash_value[3] should hash value same with hash_value[0]')
+        # step 3
+        self.rssprocess.destroy_rule(rule_id=rule_id_symmetric)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_symmetric)
+        self.verify(hash_value[0] != hash_value[1] and hash_value[2] != hash_value[3] and hash_value[4] != hash_value[5],
+                    'except symmetric not work')
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        self.verify(hash_value[1] != hash_value[0], 'hash_value[1] should hash value different from hash_value[0]')
+        self.verify(hash_value[2] != hash_value[0], 'hash_value[2] should hash value different with hash_value[0]')
+        self.verify(hash_value[3] == hash_value[0], 'hash_value[3] should hash value same with hash_value[0]')
+        # step 4
+        rule_id_symmetric = self.rssprocess.create_rule(rule=rule_symmetric)
+        self.rssprocess.check_rule(rule_list=rule_id_symmetric)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_symmetric)
+        self.verify(hash_value[0] == hash_value[1], 'expect hash_value[0] == hash_value[1]')
+        self.verify(hash_value[2] == hash_value[3], 'expect hash_value[2] == hash_value[3]')
+        self.verify(hash_value[4] == hash_value[5], 'expect hash_value[4] == hash_value[5]')
+        # step 5
+        self.rssprocess.destroy_rule(rule_id=rule_id_toeplitz)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_symmetric)
+        self.verify(hash_value[0] == hash_value[1], 'expect hash_value[0] == hash_value[1]')
+        self.verify(hash_value[2] == hash_value[3], 'expect hash_value[2] == hash_value[3]')
+        self.verify(hash_value[4] == hash_value[5], 'expect hash_value[4] == hash_value[5]')
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        self.verify(hash_value[0] != hash_value[1] and hash_value[2] != hash_value[3] and hash_value[4] != hash_value[5],
+                    'except symmetric not work')
+        self.pmd_output.execute_cmd('flow flush 0')
+
+        self.logger.info('Subcase: toeplitz/symmetric with different pattern (with/without UL/DL)')
+        # step 1
+        rule_toeplitz = 'flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end'
+        pkts_toeplitz = [
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/TCP(sport=22, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:1111")/TCP(sport=22, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:1111", dst="2222:3333:4444:5555:6666:7777:8888:9999")/TCP(sport=12, dport=13)/("X"*480)'
+        ]
+        rule_symmetric = 'flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end'
+        pkts_symmetric = [
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/TCP(sport=22, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/TCP(sport=12, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=0, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:1111", dst="2222:3333:4444:5555:6666:7777:8888:1111")/TCP(sport=22, dport=13)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/TCP(sport=22, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/TCP(sport=12, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(pdu_type=1, qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:1111", dst="2222:3333:4444:5555:6666:7777:8888:1111")/TCP(sport=22, dport=13)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/TCP(sport=22, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:8888", dst="2222:3333:4444:5555:6666:7777:8888:9999")/TCP(sport=12, dport=23)/("X"*480)',
+            'Ether(dst="00:11:22:33:44:55")/IPv6()/UDP(dport=2152)/GTP_U_Header(gtp_type=255, teid=0x123456)/GTP_PDUSession_ExtensionHeader(qos_flow=0x34)/IPv6(src="1111:2222:3333:4444:5555:6666:7777:1111", dst="2222:3333:4444:5555:6666:7777:8888:1111")/TCP(sport=22, dport=13)/("X"*480)'
+        ]
+        rule_id_toeplitz = self.rssprocess.create_rule(rule=rule_toeplitz)
+        self.rssprocess.check_rule(rule_list=rule_id_toeplitz)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        self.verify(hash_value[1] != hash_value[0], 'hash_value[1] should hash value different from hash_value[0]')
+        self.verify(hash_value[2] != hash_value[0], 'hash_value[2] should hash value different with hash_value[0]')
+        self.verify(hash_value[3] == hash_value[0], 'hash_value[3] should hash value same from hash_value[0]')
+        rule_id_symmetric = self.rssprocess.create_rule(rule=rule_symmetric)
+        self.rssprocess.check_rule(rule_list=rule_id_symmetric)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_symmetric)
+        self.verify(hash_value[1] != hash_value[0] and hash_value[2] == hash_value[0],
+                    'hash_value[0] should hash value different from hash_value[1] and equal to hash_value[2]')
+        self.verify(hash_value[4] != hash_value[3] and hash_value[5] == hash_value[3],
+                    'hash_value[3] should hash value different from hash_value[4] and equal to hash_value[5]')
+        self.verify(hash_value[6] != hash_value[7] and hash_value[6] == hash_value[8],
+                    'hash_value[6] should hash value different from hash_value[7] and equal to hash_value[8]')
+        # step 2
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        self.verify(len(hash_value) == 0, 'all the symmetric packet should have no hash value')
+        # step 3
+        self.rssprocess.destroy_rule(rule_id=rule_id_symmetric)
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_symmetric)
+        self.verify(len(hash_value) == 0, 'all the symmetric packet should have no hash value')
+        hash_value, _ = self.rssprocess.send_pkt_get_hash_queues(pkts=pkts_toeplitz)
+        self.verify(len(hash_value) == 0, 'all the symmetric packet should have no hash value')
+        self.pmd_output.execute_cmd('flow flush 0')
+
+    # iavf gtpc and gtpu
+    def test_mac_ipv4_gtpu(self):
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_toeplitz)
+
+    def test_mac_ipv6_gtpu(self):
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv6_gtpu_toeplitz)
+
+    def test_mac_ipv4_gtpc(self):
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpc_toeplitz)
+
+    def test_mac_ipv6_gtpc(self):
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv6_gtpc_toeplitz)
+
+    def test_mac_ipv4_gtpu_symmetric(self):
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpu_symmetric_toeplitz)
+
+    def test_mac_ipv6_gtpu_symmetric(self):
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv6_gtpu_symmetric_toeplitz)
+
+    def test_mac_ipv4_gtpc_symmetric(self):
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv4_gtpc_symmetric_toeplitz)
+
+    def test_mac_ipv6_gtpc_symmetric(self):
+        self.rssprocess.handle_rss_distribute_cases(cases_info=mac_ipv6_gtpc_symmetric_toeplitz)
+
+    def tear_down(self):
+        # destroy all flow rule on port 0
+        self.dut.send_command("flow flush 0", timeout=1)
+        self.dut.send_command("clear port stats all", timeout=1)
+        self.pmd_output.execute_cmd("stop")
+
+    def tear_down_all(self):
+        self.destroy_vf()
+        self.dut.kill_all()
-- 
1.8.3.1


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

* Re: [dts] [PATCH V1] tests/cvl_iavf_rss_gtpu:add iavf rss gtpu suite
  2020-10-20  9:41 [dts] [PATCH V1] tests/cvl_iavf_rss_gtpu:add iavf rss gtpu suite Zhimin Huang
@ 2020-10-20 10:04 ` Huang, ZhiminX
  0 siblings, 0 replies; 2+ messages in thread
From: Huang, ZhiminX @ 2020-10-20 10:04 UTC (permalink / raw)
  To: dts, Fu, Qi

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

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


Regards,
HuangZhiMin


-----Original Message-----
From: Zhimin Huang [mailto:zhiminx.huang@intel.com] 
Sent: Tuesday, October 20, 2020 5:41 PM
To: dts@dpdk.org; Fu, Qi <qi.fu@intel.com>
Cc: Huang, ZhiminX <zhiminx.huang@intel.com>
Subject: [dts] [PATCH V1] tests/cvl_iavf_rss_gtpu:add iavf rss gtpu suite

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

20/10/2020 14:16:03                            dts: 
TEST SUITE : TestCVLRSS
20/10/2020 14:16:03                            dts: NIC :        columbiaville_25g
20/10/2020 14:16:04              dut.10.240.183.67: 
20/10/2020 14:16:04                         tester: 
20/10/2020 14:16:08              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 14:16:08              dut.10.240.183.67: 0x8086
20/10/2020 14:16:08              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 14:16:08              dut.10.240.183.67: 0x1889
20/10/2020 14:16:08              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 14:16:08              dut.10.240.183.67: 0x8086
20/10/2020 14:16:08              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 14:16:08              dut.10.240.183.67: 0x1889
20/10/2020 14:16:09              dut.10.240.183.67: ip link set enp24s0f0 vf 0 mac 00:11:22:33:44:55
20/10/2020 14:16:09              dut.10.240.183.67: 
20/10/2020 14:16:10              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_321472_20201020141534    -- -i --rxq=16 --txq=16
20/10/2020 14:16:11              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_321472_20201020141534/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 14:16:21              dut.10.240.183.67: port config all rss all
20/10/2020 14:16:21              dut.10.240.183.67: 
Port 0 modified RSS hash function based on hardware support,requested:0x7f83fffc configured:0xf8
rss_hf 0x7f83fffc
20/10/2020 14:16:21              dut.10.240.183.67: set fwd rxonly
20/10/2020 14:16:21              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 14:16:21              dut.10.240.183.67: set verbose 1
20/10/2020 14:16:22              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 14:16:22              dut.10.240.183.67: show port info all
20/10/2020 14:16:22              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10 Gbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 14:16:22                     TestCVLRSS: set_up_all failed:
Traceback (most recent call last):
  File "/home/huangzhimin/dts_rss/framework/test_case.py", line 258, in execute_setup_all
    self.set_up_all()
  File "tests/TestSuite_cvl_iavf_gtpu_gtpc.py", line 4844, in set_up_all
    self.os_default_package = self.get_suite_cfg()["os_default_package_file_location"]
KeyError: 'os_default_package_file_location'

20/10/2020 14:16:22                            dts: 
TEST SUITE ENDED: TestCVLRSS
20/10/2020 14:18:44                            dts: 
TEST SUITE : TestCVLRSS
20/10/2020 14:18:44                            dts: NIC :        columbiaville_25g
20/10/2020 14:18:44              dut.10.240.183.67: 
20/10/2020 14:18:44                         tester: 
20/10/2020 14:18:49              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 14:18:49              dut.10.240.183.67: 0x8086
20/10/2020 14:18:49              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 14:18:49              dut.10.240.183.67: 0x1889
20/10/2020 14:18:49              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 14:18:49              dut.10.240.183.67: 0x8086
20/10/2020 14:18:49              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 14:18:49              dut.10.240.183.67: 0x1889
20/10/2020 14:18:49              dut.10.240.183.67: ip link set enp24s0f0 vf 0 mac 00:11:22:33:44:55
20/10/2020 14:18:49              dut.10.240.183.67: 
20/10/2020 14:18:51              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_321891_20201020141815    -- -i --rxq=16 --txq=16
20/10/2020 14:18:52              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_321891_20201020141815/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 14:19:02              dut.10.240.183.67: port config all rss all
20/10/2020 14:19:02              dut.10.240.183.67: 
Port 0 modified RSS hash function based on hardware support,requested:0x7f83fffc configured:0xf8
rss_hf 0x7f83fffc
20/10/2020 14:19:02              dut.10.240.183.67: set fwd rxonly
20/10/2020 14:19:02              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 14:19:02              dut.10.240.183.67: set verbose 1
20/10/2020 14:19:02              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 14:19:02              dut.10.240.183.67: show port info all
20/10/2020 14:19:02              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10 Gbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 14:19:02                     TestCVLRSS: rssprocess.tester_ifaces: ['enp24s0f0', 'enp24s0f1']
20/10/2020 14:19:02                     TestCVLRSS: rssprocess.test_case: <TestSuite_cvl_iavf_gtpu_gtpc.TestCVLRSS object at 0x7faaeef54be0>
20/10/2020 14:19:02                     TestCVLRSS: Test Case test_mac_ipv4_gtpc Begin
20/10/2020 14:19:02              dut.10.240.183.67: 
20/10/2020 14:19:02                         tester: 
20/10/2020 14:19:02              dut.10.240.183.67: start
20/10/2020 14:19:02              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:19:02                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpc_l3src_only================
20/10/2020 14:19:02                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:19:02              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 14:19:02              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:19:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 14:19:03              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:19:03              dut.10.240.183.67: flow list 0
20/10/2020 14:19:03              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPC => RSS
20/10/2020 14:19:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:04              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xc34fa314 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:19:04                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoRequest'}

20/10/2020 14:19:04                     TestCVLRSS: hash_infos: [('0xc34fa314', '0x4')]
20/10/2020 14:19:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:05              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x72a5ee0a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:19:05                     TestCVLRSS: action: check_hash_different

20/10/2020 14:19:05                     TestCVLRSS: hash_infos: [('0x72a5ee0a', '0xa')]
20/10/2020 14:19:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:06              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xc34fa314 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:19:06                     TestCVLRSS: action: check_hash_same

20/10/2020 14:19:06                     TestCVLRSS: hash_infos: [('0xc34fa314', '0x4')]
20/10/2020 14:19:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:07              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xc34fa314 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:19:07                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoEesponse'}

20/10/2020 14:19:07                     TestCVLRSS: hash_infos: [('0xc34fa314', '0x4')]
20/10/2020 14:19:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:08              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x72a5ee0a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:19:08                     TestCVLRSS: action: check_hash_different

20/10/2020 14:19:08                     TestCVLRSS: hash_infos: [('0x72a5ee0a', '0xa')]
20/10/2020 14:19:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:09              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xc34fa314 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:19:09                     TestCVLRSS: action: check_hash_same

20/10/2020 14:19:09                     TestCVLRSS: hash_infos: [('0xc34fa314', '0x4')]
20/10/2020 14:19:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:10              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0xc34fa314 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:19:10                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-CreatePDPContextRequest'}

20/10/2020 14:19:10                     TestCVLRSS: hash_infos: [('0xc34fa314', '0x4')]
20/10/2020 14:19:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:11              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0x72a5ee0a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:19:11                     TestCVLRSS: action: check_hash_different

20/10/2020 14:19:11                     TestCVLRSS: hash_infos: [('0x72a5ee0a', '0xa')]
20/10/2020 14:19:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:13              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0xc34fa314 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:19:13                     TestCVLRSS: action: check_hash_same

20/10/2020 14:19:13                     TestCVLRSS: hash_infos: [('0xc34fa314', '0x4')]
20/10/2020 14:19:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:14              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xc34fa314 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:19:14                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-CreatePDPContextResponse'}

20/10/2020 14:19:14                     TestCVLRSS: hash_infos: [('0xc34fa314', '0x4')]
20/10/2020 14:19:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:15              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x72a5ee0a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:19:15                     TestCVLRSS: action: check_hash_different

20/10/2020 14:19:15                     TestCVLRSS: hash_infos: [('0x72a5ee0a', '0xa')]
20/10/2020 14:19:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:16              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xc34fa314 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:19:16                     TestCVLRSS: action: check_hash_same

20/10/2020 14:19:16                     TestCVLRSS: hash_infos: [('0xc34fa314', '0x4')]
20/10/2020 14:19:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:17              dut.10.240.183.67: 
20/10/2020 14:19:17                     TestCVLRSS: sub_case mac_ipv4_gtpc_l3src_only failed: 'expect received 1 pkts, but get 0 instead'
20/10/2020 14:19:17              dut.10.240.183.67: flow flush 0
20/10/2020 14:19:17              dut.10.240.183.67: 
20/10/2020 14:19:17                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpc_l3dst_only================
20/10/2020 14:19:17                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:19:17              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end 
20/10/2020 14:19:17              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:19:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end 
20/10/2020 14:19:17              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:19:17              dut.10.240.183.67: flow list 0
20/10/2020 14:19:17              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPC => RSS
20/10/2020 14:19:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:18              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xa09b3928 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:19:18                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoRequest'}

20/10/2020 14:19:18                     TestCVLRSS: hash_infos: [('0xa09b3928', '0x8')]
20/10/2020 14:19:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:19              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x11717436 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:19:19                     TestCVLRSS: action: check_hash_different

20/10/2020 14:19:19                     TestCVLRSS: hash_infos: [('0x11717436', '0x6')]
20/10/2020 14:19:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:20              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xa09b3928 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:19:20                     TestCVLRSS: action: check_hash_same

20/10/2020 14:19:20                     TestCVLRSS: hash_infos: [('0xa09b3928', '0x8')]
20/10/2020 14:19:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:22              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xa09b3928 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:19:22                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoEesponse'}

20/10/2020 14:19:22                     TestCVLRSS: hash_infos: [('0xa09b3928', '0x8')]
20/10/2020 14:19:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:23              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x11717436 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:19:23                     TestCVLRSS: action: check_hash_different

20/10/2020 14:19:23                     TestCVLRSS: hash_infos: [('0x11717436', '0x6')]
20/10/2020 14:19:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:24              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xa09b3928 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:19:24                     TestCVLRSS: action: check_hash_same

20/10/2020 14:19:24                     TestCVLRSS: hash_infos: [('0xa09b3928', '0x8')]
20/10/2020 14:19:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:25              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0xa09b3928 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:19:25                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-CreatePDPContextRequest'}

20/10/2020 14:19:25                     TestCVLRSS: hash_infos: [('0xa09b3928', '0x8')]
20/10/2020 14:19:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:26              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0x11717436 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:19:26                     TestCVLRSS: action: check_hash_different

20/10/2020 14:19:26                     TestCVLRSS: hash_infos: [('0x11717436', '0x6')]
20/10/2020 14:19:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:27              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0xa09b3928 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:19:27                     TestCVLRSS: action: check_hash_same

20/10/2020 14:19:27                     TestCVLRSS: hash_infos: [('0xa09b3928', '0x8')]
20/10/2020 14:19:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:28              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xa09b3928 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:19:28                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-CreatePDPContextResponse'}

20/10/2020 14:19:28                     TestCVLRSS: hash_infos: [('0xa09b3928', '0x8')]
20/10/2020 14:19:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:29              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x11717436 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:19:29                     TestCVLRSS: action: check_hash_different

20/10/2020 14:19:29                     TestCVLRSS: hash_infos: [('0x11717436', '0x6')]
20/10/2020 14:19:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:30              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xa09b3928 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:19:30                     TestCVLRSS: action: check_hash_same

20/10/2020 14:19:30                     TestCVLRSS: hash_infos: [('0xa09b3928', '0x8')]
20/10/2020 14:19:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:31              dut.10.240.183.67: 
20/10/2020 14:19:31                     TestCVLRSS: sub_case mac_ipv4_gtpc_l3dst_only failed: 'expect received 1 pkts, but get 0 instead'
20/10/2020 14:19:31              dut.10.240.183.67: flow flush 0
20/10/2020 14:19:31              dut.10.240.183.67: 
20/10/2020 14:19:31                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpc_l3_src_only_l3_dst_only================
20/10/2020 14:19:31                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:19:31              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 end key_len 0 queues end / end 
20/10/2020 14:19:32              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:19:32              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 end key_len 0 queues end / end 
20/10/2020 14:19:32              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:19:32              dut.10.240.183.67: flow list 0
20/10/2020 14:19:32              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPC => RSS
20/10/2020 14:19:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:33              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xde8b34d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:19:33                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoRequest'}

20/10/2020 14:19:33                     TestCVLRSS: hash_infos: [('0xde8b34d5', '0x5')]
20/10/2020 14:19:33                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:34              dut.10.240.183.67: flow flush 0
20/10/2020 14:19:34              dut.10.240.183.67: 
20/10/2020 14:19:34                     TestCVLRSS: Test Case test_mac_ipv4_gtpc SKIPPED: 
20/10/2020 14:19:34              dut.10.240.183.67: flow flush 0
20/10/2020 14:19:35              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:19:35              dut.10.240.183.67: clear port stats all
20/10/2020 14:19:36              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:19:36              dut.10.240.183.67: stop
20/10/2020 14:19:36              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

Done.
20/10/2020 14:19:36              dut.10.240.183.67: flow flush 0
20/10/2020 14:19:37              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:19:37              dut.10.240.183.67: clear port stats all
20/10/2020 14:19:39              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:19:39              dut.10.240.183.67: stop
20/10/2020 14:19:39              dut.10.240.183.67: 
Packet forwarding not started
20/10/2020 14:19:39                     TestCVLRSS: Test Case test_mac_ipv4_gtpc_symmetric Begin
20/10/2020 14:19:39              dut.10.240.183.67: 
20/10/2020 14:19:39                         tester: 
20/10/2020 14:19:39              dut.10.240.183.67: start
20/10/2020 14:19:39              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:19:39                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpc_symmetric================
20/10/2020 14:19:39                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:19:39              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 14:19:39              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:19:39              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 14:19:39              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:19:39              dut.10.240.183.67: flow list 0
20/10/2020 14:19:39              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPC => RSS
20/10/2020 14:19:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:40              dut.10.240.183.67: flow flush 0
20/10/2020 14:19:40              dut.10.240.183.67: 
20/10/2020 14:19:40                     TestCVLRSS: Test Case test_mac_ipv4_gtpc_symmetric SKIPPED: 
20/10/2020 14:19:40              dut.10.240.183.67: flow flush 0
20/10/2020 14:19:41              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:19:41              dut.10.240.183.67: clear port stats all
20/10/2020 14:19:42              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:19:42              dut.10.240.183.67: stop
20/10/2020 14:19:42              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

Done.
20/10/2020 14:19:42              dut.10.240.183.67: flow flush 0
20/10/2020 14:19:43              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:19:43              dut.10.240.183.67: clear port stats all
20/10/2020 14:19:45              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:19:45              dut.10.240.183.67: stop
20/10/2020 14:19:45              dut.10.240.183.67: 
Packet forwarding not started
20/10/2020 14:19:45                     TestCVLRSS: Test Case test_mac_ipv4_gtpu Begin
20/10/2020 14:19:45              dut.10.240.183.67: 
20/10/2020 14:19:45                         tester: 
20/10/2020 14:19:45              dut.10.240.183.67: start
20/10/2020 14:19:45              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:19:45                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpu_l3src_only================
20/10/2020 14:19:45                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:19:45              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 14:19:45              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:19:45              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 14:19:45              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:19:45              dut.10.240.183.67: flow list 0
20/10/2020 14:19:45              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU => RSS
20/10/2020 14:19:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:46              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0xc34fa314 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:19:46                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-pay'}

20/10/2020 14:19:46                     TestCVLRSS: hash_infos: [('0xc34fa314', '0x4')]
20/10/2020 14:19:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:19:47              dut.10.240.183.67: flow flush 0
20/10/2020 14:19:47              dut.10.240.183.67: 
20/10/2020 14:19:47                     TestCVLRSS: Test Case test_mac_ipv4_gtpu SKIPPED: 
20/10/2020 14:19:47              dut.10.240.183.67: flow flush 0
20/10/2020 14:19:47              dut.10.240.183.67: flow flush 0
20/10/2020 14:19:48                            dts:  !!! STOPPING DTS
20/10/2020 14:19:48              dut.10.240.183.67: quit
20/10/2020 14:19:49              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

  ---------------------- 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: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

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

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

Bye...
20/10/2020 14:19:54              dut.10.240.183.67: kill_all: called by dut and prefix list has value.
20/10/2020 14:19:55              dut.10.240.183.67: kill_all: called by dut and has no prefix list.
20/10/2020 14:19:57              dut.10.240.183.67: echo 0000:18:00.0 > /sys/bus/pci/devices/0000\:18\:00.0/driver/unbind
20/10/2020 14:19:58              dut.10.240.183.67: 
20/10/2020 14:19:58              dut.10.240.183.67: modprobe ice
20/10/2020 14:19:58              dut.10.240.183.67: 
20/10/2020 14:19:58              dut.10.240.183.67: echo 0000:18:00.0 > /sys/bus/pci/drivers/ice/bind
20/10/2020 14:19:59              dut.10.240.183.67: 
20/10/2020 14:19:59              dut.10.240.183.67: ifconfig enp24s0f0 up
20/10/2020 14:19:59              dut.10.240.183.67: 
20/10/2020 14:19:59              dut.10.240.183.67: echo 0000:18:00.1 > /sys/bus/pci/devices/0000\:18\:00.1/driver/unbind
20/10/2020 14:19:59              dut.10.240.183.67: 
20/10/2020 14:19:59              dut.10.240.183.67: modprobe ice
20/10/2020 14:19:59              dut.10.240.183.67: 
20/10/2020 14:19:59              dut.10.240.183.67: echo 0000:18:00.1 > /sys/bus/pci/drivers/ice/bind
20/10/2020 14:20:00              dut.10.240.183.67: 
20/10/2020 14:20:00              dut.10.240.183.67: ifconfig enp24s0f1 up
20/10/2020 14:20:00              dut.10.240.183.67: 
20/10/2020 14:20:00              dut.10.240.183.67: echo 0000:18:00.2 > /sys/bus/pci/devices/0000\:18\:00.2/driver/unbind
20/10/2020 14:20:00              dut.10.240.183.67: 
20/10/2020 14:20:00              dut.10.240.183.67: modprobe ice
20/10/2020 14:20:00              dut.10.240.183.67: 
20/10/2020 14:20:00              dut.10.240.183.67: echo 0000:18:00.2 > /sys/bus/pci/drivers/ice/bind
20/10/2020 14:20:01              dut.10.240.183.67: 
20/10/2020 14:20:01              dut.10.240.183.67: ifconfig enp24s0f2 up
20/10/2020 14:20:01              dut.10.240.183.67: 
20/10/2020 14:20:01              dut.10.240.183.67: echo 0000:18:00.3 > /sys/bus/pci/devices/0000\:18\:00.3/driver/unbind
20/10/2020 14:20:01              dut.10.240.183.67: 
20/10/2020 14:20:01              dut.10.240.183.67: modprobe ice
20/10/2020 14:20:02              dut.10.240.183.67: 
20/10/2020 14:20:02              dut.10.240.183.67: echo 0000:18:00.3 > /sys/bus/pci/drivers/ice/bind
20/10/2020 14:20:02              dut.10.240.183.67: 
20/10/2020 14:20:02              dut.10.240.183.67: ifconfig enp24s0f3 up
20/10/2020 14:20:03              dut.10.240.183.67: 
20/10/2020 14:20:05                            dts: DTS ended
20/10/2020 14:24:07                            dts: 
TEST SUITE : TestCVLRSS
20/10/2020 14:24:07                            dts: NIC :        columbiaville_25g
20/10/2020 14:24:07              dut.10.240.183.67: 
20/10/2020 14:24:07                         tester: 
20/10/2020 14:24:12              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 14:24:12              dut.10.240.183.67: 0x8086
20/10/2020 14:24:12              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 14:24:12              dut.10.240.183.67: 0x1889
20/10/2020 14:24:12              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 14:24:12              dut.10.240.183.67: 0x8086
20/10/2020 14:24:12              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 14:24:12              dut.10.240.183.67: 0x1889
20/10/2020 14:24:12              dut.10.240.183.67: ip link set enp24s0f0 vf 0 mac 00:11:22:33:44:55
20/10/2020 14:24:12              dut.10.240.183.67: 
20/10/2020 14:24:14              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_322445_20201020142337    -- -i --rxq=16 --txq=16
20/10/2020 14:24:15              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_322445_20201020142337/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mb_pool_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 14:24:25              dut.10.240.183.67: port config all rss all
20/10/2020 14:24:25              dut.10.240.183.67: 
Port 0 modified RSS hash function based on hardware support,requested:0x7f83fffc configured:0xf8
rss_hf 0x7f83fffc
20/10/2020 14:24:25              dut.10.240.183.67: set fwd rxonly
20/10/2020 14:24:25              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 14:24:25              dut.10.240.183.67: set verbose 1
20/10/2020 14:24:25              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 14:24:25              dut.10.240.183.67: show port info all
20/10/2020 14:24:25              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10 Gbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 14:24:25                     TestCVLRSS: rssprocess.tester_ifaces: ['enp24s0f0', 'enp24s0f1']
20/10/2020 14:24:25                     TestCVLRSS: rssprocess.test_case: <TestSuite_cvl_iavf_gtpu_gtpc.TestCVLRSS object at 0x7f3a09d7d2e8>
20/10/2020 14:24:25                     TestCVLRSS: Test Case test_mac_ipv4_gtpc Begin
20/10/2020 14:24:25              dut.10.240.183.67: 
20/10/2020 14:24:25                         tester: 
20/10/2020 14:24:25              dut.10.240.183.67: start
20/10/2020 14:24:26              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:24:26                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpc_l3src_only================
20/10/2020 14:24:26                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:24:26              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 14:24:26              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:24:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 14:24:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:24:26              dut.10.240.183.67: flow list 0
20/10/2020 14:24:26              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPC => RSS
20/10/2020 14:24:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:27              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:27                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoRequest'}

20/10/2020 14:24:27                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:28              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:28                     TestCVLRSS: action: check_hash_different

20/10/2020 14:24:28                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:24:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:29              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:29                     TestCVLRSS: action: check_hash_same

20/10/2020 14:24:29                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:30              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:30                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoEesponse'}

20/10/2020 14:24:30                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:31              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:31                     TestCVLRSS: action: check_hash_different

20/10/2020 14:24:31                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:24:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:32              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:32                     TestCVLRSS: action: check_hash_same

20/10/2020 14:24:32                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:33              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:33                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-CreatePDPContextRequest'}

20/10/2020 14:24:33                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:33                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:35              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:35                     TestCVLRSS: action: check_hash_different

20/10/2020 14:24:35                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:24:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:36              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:36                     TestCVLRSS: action: check_hash_same

20/10/2020 14:24:36                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:37              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:37                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-CreatePDPContextResponse'}

20/10/2020 14:24:37                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:38              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:38                     TestCVLRSS: action: check_hash_different

20/10/2020 14:24:38                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:24:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:39              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:39                     TestCVLRSS: action: check_hash_same

20/10/2020 14:24:39                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:40              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:40                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:24:40                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:41              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:41                     TestCVLRSS: action: check_hash_different

20/10/2020 14:24:41                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:24:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:42              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:42                     TestCVLRSS: action: check_hash_same

20/10/2020 14:24:42                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:43              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:43                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:24:43                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:44              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:44                     TestCVLRSS: action: check_hash_different

20/10/2020 14:24:44                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:24:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:46              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:46                     TestCVLRSS: action: check_hash_same

20/10/2020 14:24:46                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:47              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:47                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-DeletePDPContextRequest'}

20/10/2020 14:24:47                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:48              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:48                     TestCVLRSS: action: check_hash_different

20/10/2020 14:24:48                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:24:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:49              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:49                     TestCVLRSS: action: check_hash_same

20/10/2020 14:24:49                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:50              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:50                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-DeletePDPContextResponse'}

20/10/2020 14:24:50                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:51              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:51                     TestCVLRSS: action: check_hash_different

20/10/2020 14:24:51                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:24:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:52              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:52                     TestCVLRSS: action: check_hash_same

20/10/2020 14:24:52                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:53              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:53                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-PDUNotificationRequest'}

20/10/2020 14:24:53                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:54              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:54                     TestCVLRSS: action: check_hash_different

20/10/2020 14:24:54                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:24:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:55              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:55                     TestCVLRSS: action: check_hash_same

20/10/2020 14:24:55                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:57              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:57                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:24:57                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:58              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:58                     TestCVLRSS: action: check_hash_different

20/10/2020 14:24:58                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:24:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:24:59              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:24:59                     TestCVLRSS: action: check_hash_same

20/10/2020 14:24:59                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:24:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:00              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:00                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-EchoRequest'}

20/10/2020 14:25:00                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:00                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:01              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:01                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:01                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:25:01                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:02              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:02                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:02                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:03              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:03                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-EchoEesponse'}

20/10/2020 14:25:03                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:04              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:04                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:04                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:25:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:05              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:05                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:05                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:06              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:06                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextRequest'}

20/10/2020 14:25:06                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:08              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:08                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:08                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:25:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:09              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:09                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:09                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:10              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:10                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextResponse'}

20/10/2020 14:25:10                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:11              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:11                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:11                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:25:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:12              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:12                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:12                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:13              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:13                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:25:13                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:14              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:14                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:14                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:25:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:15              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:15                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:15                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:16              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:16                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:25:16                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:18              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:18                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:18                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:25:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:19              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:19                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:19                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:20              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:20                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextRequest'}

20/10/2020 14:25:20                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:21              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:21                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:21                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:25:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:22              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:22                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:22                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:23              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:23                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextResponse'}

20/10/2020 14:25:23                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:24              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:24                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:24                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:25:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:25              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:25                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:25                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:26              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:26                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-PDUNotificationRequest'}

20/10/2020 14:25:26                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:27              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:27                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:27                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:25:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:28              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:28                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:28                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:30              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:30                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:25:30                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:31              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:31                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:31                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:25:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:32              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:32                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:32                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:25:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:33              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:25:33                     TestCVLRSS: action: save_hash

20/10/2020 14:25:33                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:25:33                     TestCVLRSS: action: ipv4-gtpu-pay

20/10/2020 14:25:33                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:34              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:34                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:34                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:25:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:35              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:25:35                     TestCVLRSS: action: save_hash

20/10/2020 14:25:35                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:25:35                     TestCVLRSS: action: ipv4-gtpu-eh-pay

20/10/2020 14:25:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:36              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:36                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:36                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:25:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:37                     TestCVLRSS: action: check_no_hash

20/10/2020 14:25:37                     TestCVLRSS: hash_infos: []
20/10/2020 14:25:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:38              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:38                     TestCVLRSS: action: check_no_hash

20/10/2020 14:25:38                     TestCVLRSS: hash_infos: []
20/10/2020 14:25:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:39              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:39                     TestCVLRSS: action: check_no_hash

20/10/2020 14:25:39                     TestCVLRSS: hash_infos: []
20/10/2020 14:25:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:41              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:41                     TestCVLRSS: action: check_no_hash

20/10/2020 14:25:41                     TestCVLRSS: hash_infos: []
20/10/2020 14:25:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:42              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:42                     TestCVLRSS: action: ipv6-gtpc-EchoRequest

20/10/2020 14:25:42                     TestCVLRSS: action: save_hash

20/10/2020 14:25:42                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:25:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:43              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:25:43                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:43                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:25:43                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:25:43              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:25:44              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:25:44              dut.10.240.183.67: flow list 0
20/10/2020 14:25:44              dut.10.240.183.67: 
20/10/2020 14:25:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:45              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:25:45                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:45                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3')]
20/10/2020 14:25:45                     TestCVLRSS: sub_case mac_ipv4_gtpc_l3src_only passed
20/10/2020 14:25:45              dut.10.240.183.67: flow flush 0
20/10/2020 14:25:45              dut.10.240.183.67: 
20/10/2020 14:25:45                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpc_l3dst_only================
20/10/2020 14:25:45                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:25:45              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end 
20/10/2020 14:25:45              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:25:45              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end 
20/10/2020 14:25:45              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:25:45              dut.10.240.183.67: flow list 0
20/10/2020 14:25:46              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPC => RSS
20/10/2020 14:25:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:47              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:47                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoRequest'}

20/10/2020 14:25:47                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:25:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:48              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:48                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:48                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:25:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:49              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:49                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:49                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:25:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:50              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:50                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoEesponse'}

20/10/2020 14:25:50                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:25:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:51              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:51                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:51                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:25:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:52              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:52                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:52                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:25:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:53              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:53                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-CreatePDPContextRequest'}

20/10/2020 14:25:53                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:25:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:54              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:54                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:54                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:25:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:55              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:55                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:55                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:25:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:56              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:56                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-CreatePDPContextResponse'}

20/10/2020 14:25:56                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:25:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:58              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:58                     TestCVLRSS: action: check_hash_different

20/10/2020 14:25:58                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:25:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:25:59              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:25:59                     TestCVLRSS: action: check_hash_same

20/10/2020 14:25:59                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:25:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:00              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:00                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:26:00                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:00                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:01              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:01                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:01                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:01                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:02              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:02                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:02                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:03              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:03                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:26:03                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:04              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:04                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:04                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:05              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:05                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:05                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:06              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:06                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-DeletePDPContextRequest'}

20/10/2020 14:26:06                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:07              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:07                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:07                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:09              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:09                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:09                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:10              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:10                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-DeletePDPContextResponse'}

20/10/2020 14:26:10                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:11              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:11                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:11                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:12              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:12                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:12                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:13              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:13                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-PDUNotificationRequest'}

20/10/2020 14:26:13                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:14              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:14                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:14                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:15              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:15                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:15                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:16              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:16                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:26:16                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:17              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:17                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:17                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:18              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:18                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:18                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:20              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:20                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-EchoRequest'}

20/10/2020 14:26:20                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:21              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:21                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:21                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:22              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:22                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:22                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:23              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:23                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-EchoEesponse'}

20/10/2020 14:26:23                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:24              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:24                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:24                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:25              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:25                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:25                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:26              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:26                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextRequest'}

20/10/2020 14:26:26                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:27              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:27                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:27                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:28              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:28                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:28                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:30              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:30                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextResponse'}

20/10/2020 14:26:30                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:31              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:31                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:31                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:32              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:32                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:32                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:33              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:33                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:26:33                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:33                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:34              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:34                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:34                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:35              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:35                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:35                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:36              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:36                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:26:36                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:37              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:37                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:37                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:38              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:38                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:38                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:39              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:39                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextRequest'}

20/10/2020 14:26:39                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:41              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:41                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:41                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:42              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:42                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:42                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:43              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:43                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextResponse'}

20/10/2020 14:26:43                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:44              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:44                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:44                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:45              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:45                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:45                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:46              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:46                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-PDUNotificationRequest'}

20/10/2020 14:26:46                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:47              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:47                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:47                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:48              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:48                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:48                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:49              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:49                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:26:49                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:50              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:50                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:50                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:26:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:51              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:51                     TestCVLRSS: action: check_hash_same

20/10/2020 14:26:51                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:26:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:53              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:26:53                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-pay'}

20/10/2020 14:26:53                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:26:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:54              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:54                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:54                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:26:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:55              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:26:55                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-eh-pay'}

20/10/2020 14:26:55                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:26:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:56              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:56                     TestCVLRSS: action: check_hash_different

20/10/2020 14:26:56                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:26:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:57              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:57                     TestCVLRSS: action: check_no_hash

20/10/2020 14:26:57                     TestCVLRSS: hash_infos: []
20/10/2020 14:26:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:58              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:58                     TestCVLRSS: action: check_no_hash

20/10/2020 14:26:58                     TestCVLRSS: hash_infos: []
20/10/2020 14:26:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:26:59              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:26:59                     TestCVLRSS: action: check_no_hash

20/10/2020 14:26:59                     TestCVLRSS: hash_infos: []
20/10/2020 14:26:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:00              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:00                     TestCVLRSS: action: check_no_hash

20/10/2020 14:27:00                     TestCVLRSS: hash_infos: []
20/10/2020 14:27:00                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:01              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:01                     TestCVLRSS: action: ipv6-gtpc-EchoRequest

20/10/2020 14:27:01                     TestCVLRSS: action: save_hash

20/10/2020 14:27:01                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:27:01                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:02              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:02                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:02                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:27:02                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:27:02              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:27:04              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:27:04              dut.10.240.183.67: flow list 0
20/10/2020 14:27:04              dut.10.240.183.67: 
20/10/2020 14:27:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:05              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:27:05                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:05                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:05                     TestCVLRSS: sub_case mac_ipv4_gtpc_l3dst_only passed
20/10/2020 14:27:05              dut.10.240.183.67: flow flush 0
20/10/2020 14:27:05              dut.10.240.183.67: 
20/10/2020 14:27:05                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpc_l3_src_only_l3_dst_only================
20/10/2020 14:27:05                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:27:05              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 end key_len 0 queues end / end 
20/10/2020 14:27:05              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:27:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss types ipv4 end key_len 0 queues end / end 
20/10/2020 14:27:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:27:05              dut.10.240.183.67: flow list 0
20/10/2020 14:27:05              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPC => RSS
20/10/2020 14:27:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:06              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:06                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoRequest'}

20/10/2020 14:27:06                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:07              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:07                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:07                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:27:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:09              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:09                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:09                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:27:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:10              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:10                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:10                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:27:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:11              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:11                     TestCVLRSS: action: check_hash_same

20/10/2020 14:27:11                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:12              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:12                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoEesponse'}

20/10/2020 14:27:12                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:13              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:13                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:13                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:27:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:14              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:14                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:14                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:27:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:15              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:15                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:15                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:27:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:16              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:16                     TestCVLRSS: action: check_hash_same

20/10/2020 14:27:16                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:17              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:17                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-CreatePDPContextRequest'}

20/10/2020 14:27:17                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:18              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:18                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:18                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:27:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:19              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:19                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:19                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:27:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:21              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:21                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:21                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:27:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:22              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:22                     TestCVLRSS: action: check_hash_same

20/10/2020 14:27:22                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:23              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:23                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-CreatePDPContextResponse'}

20/10/2020 14:27:23                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:24              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:24                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:24                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:27:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:25              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:25                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:25                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:27:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:26              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:26                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:26                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:27:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:27              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:27                     TestCVLRSS: action: check_hash_same

20/10/2020 14:27:27                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:28              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:28                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:27:28                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:29              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:29                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:29                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:27:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:30              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:30                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:30                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:27:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:32              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:32                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:32                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:27:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:33              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:33                     TestCVLRSS: action: check_hash_same

20/10/2020 14:27:33                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:33                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:34              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:34                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:27:34                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:35              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:35                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:35                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:27:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:36              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:36                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:36                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:27:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:37              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:37                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:37                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:27:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:38              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:38                     TestCVLRSS: action: check_hash_same

20/10/2020 14:27:38                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:39              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:39                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-DeletePDPContextRequest'}

20/10/2020 14:27:39                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:40              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:40                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:40                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:27:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:42              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:42                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:42                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:27:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:43              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:43                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:43                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:27:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:44              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:44                     TestCVLRSS: action: check_hash_same

20/10/2020 14:27:44                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:45              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:45                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-DeletePDPContextResponse'}

20/10/2020 14:27:45                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:46              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:46                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:46                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:27:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:47              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:47                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:47                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:27:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:48              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:48                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:48                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:27:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:49              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:49                     TestCVLRSS: action: check_hash_same

20/10/2020 14:27:49                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:50              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:50                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-PDUNotificationRequest'}

20/10/2020 14:27:50                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:51              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:51                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:51                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:27:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:53              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:53                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:53                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:27:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:54              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:54                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:54                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:27:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:55              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:55                     TestCVLRSS: action: check_hash_same

20/10/2020 14:27:55                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:56              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:56                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:27:56                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:27:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:57              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:57                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:57                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:27:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:58              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:27:58                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:58                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:27:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:27:59              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:27:59                     TestCVLRSS: action: check_hash_different

20/10/2020 14:27:59                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:27:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:00              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:28:00                     TestCVLRSS: action: check_hash_same

20/10/2020 14:28:00                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:00                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:01              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:01                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-EchoRequest'}

20/10/2020 14:28:01                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:01                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:02              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:02                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:02                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:28:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:04              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:04                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:04                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:28:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:05              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:28:05                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:05                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:28:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:06              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:06                     TestCVLRSS: action: check_hash_same

20/10/2020 14:28:06                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:07              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:07                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-EchoEesponse'}

20/10/2020 14:28:07                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:08              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:08                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:08                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:28:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:09              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:09                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:09                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:28:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:10              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:28:10                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:10                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:28:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:11              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:11                     TestCVLRSS: action: check_hash_same

20/10/2020 14:28:11                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:12              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:12                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextRequest'}

20/10/2020 14:28:12                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:13              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:13                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:13                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:28:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:15              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:15                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:15                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:28:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:16              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:28:16                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:16                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:28:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:17              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:17                     TestCVLRSS: action: check_hash_same

20/10/2020 14:28:17                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:18              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:18                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextResponse'}

20/10/2020 14:28:18                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:19              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:19                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:19                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:28:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:20              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:20                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:20                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:28:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:21              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:28:21                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:21                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:28:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:22              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:22                     TestCVLRSS: action: check_hash_same

20/10/2020 14:28:22                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:23              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:23                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:28:23                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:24              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:24                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:24                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:28:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:26              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:26                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:26                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:28:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:27              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:28:27                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:27                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:28:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:28              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:28                     TestCVLRSS: action: check_hash_same

20/10/2020 14:28:28                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:29              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:29                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:28:29                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:30              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:30                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:30                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:28:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:31              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:31                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:31                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:28:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:32              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:28:32                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:32                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:28:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:33              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:33                     TestCVLRSS: action: check_hash_same

20/10/2020 14:28:33                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:33                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:34              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:34                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextRequest'}

20/10/2020 14:28:34                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:35              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:35                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:35                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:28:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:37              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:37                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:37                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:28:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:38              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:28:38                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:38                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:28:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:39              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:39                     TestCVLRSS: action: check_hash_same

20/10/2020 14:28:39                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:40              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:40                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextResponse'}

20/10/2020 14:28:40                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:41              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:41                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:41                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:28:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:42              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:42                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:42                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:28:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:43              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:28:43                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:43                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:28:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:44              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:44                     TestCVLRSS: action: check_hash_same

20/10/2020 14:28:44                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:45              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:45                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-PDUNotificationRequest'}

20/10/2020 14:28:45                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:46              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:46                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:46                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:28:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:48              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:48                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:48                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:28:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:49              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:28:49                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:49                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:28:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:50              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:50                     TestCVLRSS: action: check_hash_same

20/10/2020 14:28:50                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:51              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:51                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:28:51                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:52              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:52                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:52                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:28:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:53              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:53                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:53                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:28:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:54              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:28:54                     TestCVLRSS: action: check_hash_different

20/10/2020 14:28:54                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:28:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:55              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:28:55                     TestCVLRSS: action: check_hash_same

20/10/2020 14:28:55                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:28:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:56              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:56                     TestCVLRSS: action: check_no_hash

20/10/2020 14:28:56                     TestCVLRSS: hash_infos: []
20/10/2020 14:28:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:57              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:57                     TestCVLRSS: action: check_no_hash

20/10/2020 14:28:57                     TestCVLRSS: hash_infos: []
20/10/2020 14:28:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:28:59              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:28:59                     TestCVLRSS: action: check_no_hash

20/10/2020 14:28:59                     TestCVLRSS: hash_infos: []
20/10/2020 14:28:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:00              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:00                     TestCVLRSS: action: check_no_hash

20/10/2020 14:29:00                     TestCVLRSS: hash_infos: []
20/10/2020 14:29:00                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:29:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:29:01              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:29:01              dut.10.240.183.67: flow list 0
20/10/2020 14:29:01              dut.10.240.183.67: 
20/10/2020 14:29:01                     TestCVLRSS: sub_case mac_ipv4_gtpc_l3_src_only_l3_dst_only passed
20/10/2020 14:29:01              dut.10.240.183.67: flow flush 0
20/10/2020 14:29:01              dut.10.240.183.67: 
20/10/2020 14:29:01                     TestCVLRSS: {'mac_ipv4_gtpc_l3src_only': 'passed', 'mac_ipv4_gtpc_l3dst_only': 'passed', 'mac_ipv4_gtpc_l3_src_only_l3_dst_only': 'passed'}
20/10/2020 14:29:01                     TestCVLRSS: pass rate is: 100.0
20/10/2020 14:29:01                     TestCVLRSS: Test Case test_mac_ipv4_gtpc Result PASSED:
20/10/2020 14:29:01              dut.10.240.183.67: flow flush 0
20/10/2020 14:29:02              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:29:02              dut.10.240.183.67: clear port stats all
20/10/2020 14:29:03              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:29:03              dut.10.240.183.67: stop
20/10/2020 14:29:03              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 14:29:03                     TestCVLRSS: Test Case test_mac_ipv4_gtpc_symmetric Begin
20/10/2020 14:29:03              dut.10.240.183.67: 
20/10/2020 14:29:04                         tester: 
20/10/2020 14:29:04              dut.10.240.183.67: start
20/10/2020 14:29:04              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:29:04                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpc_symmetric================
20/10/2020 14:29:04                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:29:04              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 14:29:04              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:29:04              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpc / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 14:29:04              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:29:04              dut.10.240.183.67: flow list 0
20/10/2020 14:29:04              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPC => RSS
20/10/2020 14:29:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:05              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:05                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoRequest'}

20/10/2020 14:29:05                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:06              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:06                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:06                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:07              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:07                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoEesponse'}

20/10/2020 14:29:07                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:08              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:08                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:08                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:09              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:09                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-CreatePDPContextRequest'}

20/10/2020 14:29:09                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:10              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:10                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:10                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:12              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:12                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-CreatePDPContextResponse'}

20/10/2020 14:29:12                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:13              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:13                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:13                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:14              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:14                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:29:14                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:15              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:15                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:15                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:16              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:16                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:29:16                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:17              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:17                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:17                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:18              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:18                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-DeletePDPContextRequest'}

20/10/2020 14:29:18                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:19              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:19                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:19                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:20              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:20                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-DeletePDPContextResponse'}

20/10/2020 14:29:20                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:21              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:21                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:21                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:23              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:23                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-PDUNotificationRequest'}

20/10/2020 14:29:23                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:24              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:24                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:24                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:25              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:25                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:29:25                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:26              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:26                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:26                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:27              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:27                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-EchoRequest'}

20/10/2020 14:29:27                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:28              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:28                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:28                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:29              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:29                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-EchoEesponse'}

20/10/2020 14:29:29                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:30              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:30                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:30                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:31              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:31                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextRequest'}

20/10/2020 14:29:31                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:32              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:32                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:32                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:34              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:34                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-CreatePDPContextResponse'}

20/10/2020 14:29:34                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:35              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:35                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:35                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:36              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:36                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:29:36                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:37              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:37                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:37                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:38              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:38                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:29:38                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:39              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:39                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:39                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:40              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:40                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextRequest'}

20/10/2020 14:29:40                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:41              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:41                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:41                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:42              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:42                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-DeletePDPContextResponse'}

20/10/2020 14:29:42                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:43              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:43                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:43                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:45              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:45                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-PDUNotificationRequest'}

20/10/2020 14:29:45                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:46              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:46                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:46                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:47              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:47                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:29:47                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:48              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:48                     TestCVLRSS: action: check_hash_same

20/10/2020 14:29:48                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:29:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:49              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:49                     TestCVLRSS: action: check_no_hash

20/10/2020 14:29:49                     TestCVLRSS: hash_infos: []
20/10/2020 14:29:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:50              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:50                     TestCVLRSS: action: check_no_hash

20/10/2020 14:29:50                     TestCVLRSS: hash_infos: []
20/10/2020 14:29:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:51              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:29:51                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-pay'}

20/10/2020 14:29:51                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:29:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:52              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4e32c70c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:52                     TestCVLRSS: action: check_hash_different

20/10/2020 14:29:52                     TestCVLRSS: hash_infos: [('0x4e32c70c', '0xc')]
20/10/2020 14:29:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:53              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:29:53                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-eh-pay'}

20/10/2020 14:29:53                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:29:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:54              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x4e32c70c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:54                     TestCVLRSS: action: check_hash_different

20/10/2020 14:29:54                     TestCVLRSS: hash_infos: [('0x4e32c70c', '0xc')]
20/10/2020 14:29:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:56              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:29:56                     TestCVLRSS: action: {'save_hash': ''}

20/10/2020 14:29:56                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:29:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:57              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x883bc2c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:29:57                     TestCVLRSS: action: check_hash_different

20/10/2020 14:29:57                     TestCVLRSS: hash_infos: [('0x883bc2c5', '0x5')]
20/10/2020 14:29:57                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:29:57              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:29:58              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:29:58              dut.10.240.183.67: flow list 0
20/10/2020 14:29:58              dut.10.240.183.67: 
20/10/2020 14:29:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:29:59              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=89 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=126 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=83 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=93 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=130 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=87 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=63 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:29:59                     TestCVLRSS: action: check_hash_different

20/10/2020 14:29:59                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3')]
20/10/2020 14:29:59                     TestCVLRSS: sub_case mac_ipv4_gtpc_symmetric passed
20/10/2020 14:29:59              dut.10.240.183.67: flow flush 0
20/10/2020 14:29:59              dut.10.240.183.67: 
20/10/2020 14:29:59                     TestCVLRSS: {'mac_ipv4_gtpc_symmetric': 'passed'}
20/10/2020 14:29:59                     TestCVLRSS: pass rate is: 100.0
20/10/2020 14:29:59                     TestCVLRSS: Test Case test_mac_ipv4_gtpc_symmetric Result PASSED:
20/10/2020 14:29:59              dut.10.240.183.67: flow flush 0
20/10/2020 14:30:00              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:30:00              dut.10.240.183.67: clear port stats all
20/10/2020 14:30:01              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:30:01              dut.10.240.183.67: stop
20/10/2020 14:30:02              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

Done.
20/10/2020 14:30:02                     TestCVLRSS: Test Case test_mac_ipv4_gtpu Begin
20/10/2020 14:30:02              dut.10.240.183.67: 
20/10/2020 14:30:02                         tester: 
20/10/2020 14:30:02              dut.10.240.183.67: start
20/10/2020 14:30:02              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:30:02                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpu_l3src_only================
20/10/2020 14:30:02                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:30:02              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 14:30:02              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:30:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 14:30:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:30:02              dut.10.240.183.67: flow list 0
20/10/2020 14:30:02              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU => RSS
20/10/2020 14:30:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:03              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:03                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-pay'}

20/10/2020 14:30:03                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:04              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:04                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:04                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:30:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:05              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:05                     TestCVLRSS: action: check_hash_same

20/10/2020 14:30:05                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:06              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:06                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-eh-pay'}

20/10/2020 14:30:06                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:08              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:08                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:08                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:30:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:09              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:09                     TestCVLRSS: action: check_hash_same

20/10/2020 14:30:09                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:10              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:10                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-echo-request'}

20/10/2020 14:30:10                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:11              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:11                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:11                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:30:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:12              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:12                     TestCVLRSS: action: check_hash_same

20/10/2020 14:30:12                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:13              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:13                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-echo-reponse'}

20/10/2020 14:30:13                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:14              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:14                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:14                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:30:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:15              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:15                     TestCVLRSS: action: check_hash_same

20/10/2020 14:30:15                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:16              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:16                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-pay'}

20/10/2020 14:30:16                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:17              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:17                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:17                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:30:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:18              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:18                     TestCVLRSS: action: check_hash_same

20/10/2020 14:30:18                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:20              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:20                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-eh-pay'}

20/10/2020 14:30:20                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:21              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:21                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:21                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:30:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:22              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:22                     TestCVLRSS: action: check_hash_same

20/10/2020 14:30:22                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:23              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:23                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-echo-request'}

20/10/2020 14:30:23                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:24              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:24                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:24                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:30:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:25              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:25                     TestCVLRSS: action: check_hash_same

20/10/2020 14:30:25                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:26              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:26                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-echo-reponse'}

20/10/2020 14:30:26                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:27              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xb3a1673a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:27                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:27                     TestCVLRSS: hash_infos: [('0xb3a1673a', '0xa')]
20/10/2020 14:30:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:28              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x782be0b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:28                     TestCVLRSS: action: check_hash_same

20/10/2020 14:30:28                     TestCVLRSS: hash_infos: [('0x782be0b1', '0x1')]
20/10/2020 14:30:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:29              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=178 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:29                     TestCVLRSS: action: check_no_hash

20/10/2020 14:30:29                     TestCVLRSS: hash_infos: []
20/10/2020 14:30:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:31              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=178 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:31                     TestCVLRSS: action: check_no_hash

20/10/2020 14:30:31                     TestCVLRSS: hash_infos: []
20/10/2020 14:30:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:32                     TestCVLRSS: action: check_no_hash

20/10/2020 14:30:32                     TestCVLRSS: hash_infos: []
20/10/2020 14:30:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:33              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:33                     TestCVLRSS: action: check_no_hash

20/10/2020 14:30:33                     TestCVLRSS: hash_infos: []
20/10/2020 14:30:33                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:34              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=198 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:34                     TestCVLRSS: action: check_no_hash

20/10/2020 14:30:34                     TestCVLRSS: hash_infos: []
20/10/2020 14:30:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:35              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=198 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:35                     TestCVLRSS: action: check_no_hash

20/10/2020 14:30:35                     TestCVLRSS: hash_infos: []
20/10/2020 14:30:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:36              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:36                     TestCVLRSS: action: check_no_hash

20/10/2020 14:30:36                     TestCVLRSS: hash_infos: []
20/10/2020 14:30:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:37                     TestCVLRSS: action: check_no_hash

20/10/2020 14:30:37                     TestCVLRSS: hash_infos: []
20/10/2020 14:30:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:38              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:38                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-pay'}

20/10/2020 14:30:38                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:30:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:39              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:30:39                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:39                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:30:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:40              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:40                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-eh-pay'}

20/10/2020 14:30:40                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:30:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:42              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:30:42                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:42                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:30:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:43              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:30:43                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoRequest'}

20/10/2020 14:30:43                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:30:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:44              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:44                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:44                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:30:44                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:30:44              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:30:45              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:30:45              dut.10.240.183.67: flow list 0
20/10/2020 14:30:45              dut.10.240.183.67: 
20/10/2020 14:30:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:46              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:30:46                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:46                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3')]
20/10/2020 14:30:46                     TestCVLRSS: sub_case mac_ipv4_gtpu_l3src_only passed
20/10/2020 14:30:46              dut.10.240.183.67: flow flush 0
20/10/2020 14:30:46              dut.10.240.183.67: 
20/10/2020 14:30:46                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpu_l3dst_only================
20/10/2020 14:30:46                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:30:46              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 14:30:46              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:30:46              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 14:30:46              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:30:46              dut.10.240.183.67: flow list 0
20/10/2020 14:30:46              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU => RSS
20/10/2020 14:30:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:47              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:47                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-pay'}

20/10/2020 14:30:47                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:30:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:49              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:49                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:49                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:30:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:50              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:50                     TestCVLRSS: action: check_hash_same

20/10/2020 14:30:50                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:30:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:51              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:51                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-eh-pay'}

20/10/2020 14:30:51                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:30:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:52              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:52                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:52                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:30:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:53              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:53                     TestCVLRSS: action: {'check_hash_same': 'ipv4-gtpu-eh-pay'}

20/10/2020 14:30:53                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:30:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:54              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:54                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-echo-request'}

20/10/2020 14:30:54                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:30:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:55              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:55                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:55                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:30:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:56              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:56                     TestCVLRSS: action: check_hash_same

20/10/2020 14:30:56                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:30:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:57              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:57                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-echo-reponse'}

20/10/2020 14:30:57                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:30:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:58              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:58                     TestCVLRSS: action: check_hash_different

20/10/2020 14:30:58                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:30:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:30:59              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:30:59                     TestCVLRSS: action: check_hash_same

20/10/2020 14:30:59                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:30:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:01              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:01                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-pay'}

20/10/2020 14:31:01                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:31:01                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:02              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:02                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:02                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:31:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:03              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:03                     TestCVLRSS: action: check_hash_same

20/10/2020 14:31:03                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:31:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:04              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:04                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-eh-pay'}

20/10/2020 14:31:04                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:31:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:05              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:05                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:05                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:31:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:06              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:06                     TestCVLRSS: action: check_hash_same

20/10/2020 14:31:06                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:31:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:07              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:07                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-echo-request'}

20/10/2020 14:31:07                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:31:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:08              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:08                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:08                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:31:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:09              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:09                     TestCVLRSS: action: check_hash_same

20/10/2020 14:31:09                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:31:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:10              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:10                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-echo-reponse'}

20/10/2020 14:31:10                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:31:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:12              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x24b4682c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:12                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:12                     TestCVLRSS: hash_infos: [('0x24b4682c', '0xc')]
20/10/2020 14:31:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:13              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xef3eefa7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:13                     TestCVLRSS: action: check_hash_same

20/10/2020 14:31:13                     TestCVLRSS: hash_infos: [('0xef3eefa7', '0x7')]
20/10/2020 14:31:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:14              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=178 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:14                     TestCVLRSS: action: check_no_hash

20/10/2020 14:31:14                     TestCVLRSS: hash_infos: []
20/10/2020 14:31:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:15              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=178 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:15                     TestCVLRSS: action: check_no_hash

20/10/2020 14:31:15                     TestCVLRSS: hash_infos: []
20/10/2020 14:31:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:16              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:16                     TestCVLRSS: action: check_no_hash

20/10/2020 14:31:16                     TestCVLRSS: hash_infos: []
20/10/2020 14:31:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:17              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:17                     TestCVLRSS: action: check_no_hash

20/10/2020 14:31:17                     TestCVLRSS: hash_infos: []
20/10/2020 14:31:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:18              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=198 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:18                     TestCVLRSS: action: check_no_hash

20/10/2020 14:31:18                     TestCVLRSS: hash_infos: []
20/10/2020 14:31:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:19              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=198 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:19                     TestCVLRSS: action: check_no_hash

20/10/2020 14:31:19                     TestCVLRSS: hash_infos: []
20/10/2020 14:31:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:20              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:20                     TestCVLRSS: action: check_no_hash

20/10/2020 14:31:20                     TestCVLRSS: hash_infos: []
20/10/2020 14:31:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:21              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:21                     TestCVLRSS: action: check_no_hash

20/10/2020 14:31:21                     TestCVLRSS: hash_infos: []
20/10/2020 14:31:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:23              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:23                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-pay'}

20/10/2020 14:31:23                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:31:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:24              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:24                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:24                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:31:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:25              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:25                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-eh-pay'}

20/10/2020 14:31:25                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:31:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:26              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:26                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:26                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:31:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:27              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:31:27                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoRequest'}

20/10/2020 14:31:27                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:31:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:28              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:28                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:28                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:31:28                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:31:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:31:29              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:31:29              dut.10.240.183.67: flow list 0
20/10/2020 14:31:29              dut.10.240.183.67: 
20/10/2020 14:31:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:30              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:31:30                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:30                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3')]
20/10/2020 14:31:30                     TestCVLRSS: sub_case mac_ipv4_gtpu_l3dst_only passed
20/10/2020 14:31:30              dut.10.240.183.67: flow flush 0
20/10/2020 14:31:30              dut.10.240.183.67: 
20/10/2020 14:31:30                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpu_l3_src_only_l3_dst_only================
20/10/2020 14:31:30                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:31:30              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 14:31:31              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:31:31              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 14:31:31              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:31:31              dut.10.240.183.67: flow list 0
20/10/2020 14:31:31              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU => RSS
20/10/2020 14:31:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:32              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:32                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-pay'}

20/10/2020 14:31:32                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:31:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:33              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:33                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:33                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:31:33                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:34              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:34                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:34                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:31:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:35              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:35                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:35                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:31:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:36              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:36                     TestCVLRSS: action: check_hash_same

20/10/2020 14:31:36                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:31:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:37              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:37                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-eh-pay'}

20/10/2020 14:31:37                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:31:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:38              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:38                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:38                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:31:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:39              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:39                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:39                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:31:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:41              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:41                     TestCVLRSS: action: {'check_hash_different': 'ipv4-gtpu-eh-pay'}

20/10/2020 14:31:41                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:31:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:42              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:42                     TestCVLRSS: action: check_hash_same

20/10/2020 14:31:42                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:31:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:43              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:43                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-echo-request'}

20/10/2020 14:31:43                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:31:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:44              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:44                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:44                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:31:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:45              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:45                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:45                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:31:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:46              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:46                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:46                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:31:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:47              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:47                     TestCVLRSS: action: check_hash_same

20/10/2020 14:31:47                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:31:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:48              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:48                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-echo-reponse'}

20/10/2020 14:31:48                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:31:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:49              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:49                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:49                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:31:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:50              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:50                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:50                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:31:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:52              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:52                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:52                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:31:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:53              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:31:53                     TestCVLRSS: action: check_hash_same

20/10/2020 14:31:53                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:31:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:54              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:31:54                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-pay'}

20/10/2020 14:31:54                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:31:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:55              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:55                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:55                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:31:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:56              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:31:56                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:56                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:31:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:57              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:31:57                     TestCVLRSS: action: check_hash_different

20/10/2020 14:31:57                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:31:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:58              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:31:58                     TestCVLRSS: action: check_hash_same

20/10/2020 14:31:58                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:31:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:31:59              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:31:59                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-eh-pay'}

20/10/2020 14:31:59                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:31:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:00              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:00                     TestCVLRSS: action: check_hash_different

20/10/2020 14:32:00                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:32:00                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:01              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:01                     TestCVLRSS: action: check_hash_different

20/10/2020 14:32:01                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:32:01                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:03              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:32:03                     TestCVLRSS: action: check_hash_different

20/10/2020 14:32:03                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:32:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:04              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:32:04                     TestCVLRSS: action: check_hash_same

20/10/2020 14:32:04                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:32:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:05              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:32:05                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-echo-request'}

20/10/2020 14:32:05                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:32:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:06              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:06                     TestCVLRSS: action: check_hash_different

20/10/2020 14:32:06                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:32:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:07              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:07                     TestCVLRSS: action: check_hash_different

20/10/2020 14:32:07                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:32:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:08              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:32:08                     TestCVLRSS: action: check_hash_different

20/10/2020 14:32:08                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:32:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:09              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:32:09                     TestCVLRSS: action: check_hash_same

20/10/2020 14:32:09                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:32:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:10              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:32:10                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-echo-reponse'}

20/10/2020 14:32:10                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:32:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:11              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:11                     TestCVLRSS: action: check_hash_different

20/10/2020 14:32:11                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:32:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:12              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:12                     TestCVLRSS: action: check_hash_different

20/10/2020 14:32:12                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:32:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:14              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xceb31224 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - 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 

20/10/2020 14:32:14                     TestCVLRSS: action: check_hash_different

20/10/2020 14:32:14                     TestCVLRSS: hash_infos: [('0xceb31224', '0x4')]
20/10/2020 14:32:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:15              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:32:15                     TestCVLRSS: action: check_hash_same

20/10/2020 14:32:15                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:32:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:16              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=178 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:16                     TestCVLRSS: action: check_no_hash

20/10/2020 14:32:16                     TestCVLRSS: hash_infos: []
20/10/2020 14:32:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:17              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=178 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:17                     TestCVLRSS: action: check_no_hash

20/10/2020 14:32:17                     TestCVLRSS: hash_infos: []
20/10/2020 14:32:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:18              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:18                     TestCVLRSS: action: check_no_hash

20/10/2020 14:32:18                     TestCVLRSS: hash_infos: []
20/10/2020 14:32:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:19              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:19                     TestCVLRSS: action: check_no_hash

20/10/2020 14:32:19                     TestCVLRSS: hash_infos: []
20/10/2020 14:32:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:20              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=198 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:20                     TestCVLRSS: action: check_no_hash

20/10/2020 14:32:20                     TestCVLRSS: hash_infos: []
20/10/2020 14:32:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:21              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=198 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:21                     TestCVLRSS: action: check_no_hash

20/10/2020 14:32:21                     TestCVLRSS: hash_infos: []
20/10/2020 14:32:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:22              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:22                     TestCVLRSS: action: check_no_hash

20/10/2020 14:32:22                     TestCVLRSS: hash_infos: []
20/10/2020 14:32:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:23              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:23                     TestCVLRSS: action: check_no_hash

20/10/2020 14:32:23                     TestCVLRSS: hash_infos: []
20/10/2020 14:32:23                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:32:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:32:25              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:32:25              dut.10.240.183.67: flow list 0
20/10/2020 14:32:25              dut.10.240.183.67: 
20/10/2020 14:32:25                     TestCVLRSS: sub_case mac_ipv4_gtpu_l3_src_only_l3_dst_only passed
20/10/2020 14:32:25              dut.10.240.183.67: flow flush 0
20/10/2020 14:32:25              dut.10.240.183.67: 
20/10/2020 14:32:25                     TestCVLRSS: {'mac_ipv4_gtpu_l3src_only': 'passed', 'mac_ipv4_gtpu_l3dst_only': 'passed', 'mac_ipv4_gtpu_l3_src_only_l3_dst_only': 'passed'}
20/10/2020 14:32:25                     TestCVLRSS: pass rate is: 100.0
20/10/2020 14:32:25                     TestCVLRSS: Test Case test_mac_ipv4_gtpu Result PASSED:
20/10/2020 14:32:25              dut.10.240.183.67: flow flush 0
20/10/2020 14:32:26              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:32:26              dut.10.240.183.67: clear port stats all
20/10/2020 14:32:27              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:32:27              dut.10.240.183.67: stop
20/10/2020 14:32:27              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 14:32:27                     TestCVLRSS: Test Case test_mac_ipv4_gtpu_symmetric Begin
20/10/2020 14:32:27              dut.10.240.183.67: 
20/10/2020 14:32:27                         tester: 
20/10/2020 14:32:27              dut.10.240.183.67: start
20/10/2020 14:32:27              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:32:27                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpu_symmetric================
20/10/2020 14:32:27                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:32:27              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 14:32:27              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:32:27              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 14:32:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:32:28              dut.10.240.183.67: flow list 0
20/10/2020 14:32:28              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU => RSS
20/10/2020 14:32:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:29              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:29                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-pay'}

20/10/2020 14:32:29                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:30              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:30                     TestCVLRSS: action: check_hash_same

20/10/2020 14:32:30                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:31              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:31                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-eh-pay'}

20/10/2020 14:32:31                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:32              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:32                     TestCVLRSS: action: check_hash_same

20/10/2020 14:32:32                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:33              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:33                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-echo-request'}

20/10/2020 14:32:33                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:33                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:34              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:34                     TestCVLRSS: action: check_hash_same

20/10/2020 14:32:34                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:35              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:35                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-echo-reponse'}

20/10/2020 14:32:35                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:36              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:36                     TestCVLRSS: action: check_hash_same

20/10/2020 14:32:36                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:38              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:38                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-pay'}

20/10/2020 14:32:38                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:39              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:39                     TestCVLRSS: action: check_hash_same

20/10/2020 14:32:39                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:40              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:40                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-eh-pay'}

20/10/2020 14:32:40                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:41              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:41                     TestCVLRSS: action: check_hash_same

20/10/2020 14:32:41                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:42              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:42                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-echo-request'}

20/10/2020 14:32:42                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:43              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:43                     TestCVLRSS: action: check_hash_same

20/10/2020 14:32:43                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:44              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:44                     TestCVLRSS: action: {'save_hash': 'vlan-ipv4-gtpu-echo-reponse'}

20/10/2020 14:32:44                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:45              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0xfe99cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:45                     TestCVLRSS: action: check_hash_same

20/10/2020 14:32:45                     TestCVLRSS: hash_infos: [('0xfe99cf', '0xf')]
20/10/2020 14:32:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:46              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=178 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:46                     TestCVLRSS: action: check_no_hash

20/10/2020 14:32:46                     TestCVLRSS: hash_infos: []
20/10/2020 14:32:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:47              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=166 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:47                     TestCVLRSS: action: check_no_hash

20/10/2020 14:32:47                     TestCVLRSS: hash_infos: []
20/10/2020 14:32:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:49              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=198 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:49                     TestCVLRSS: action: check_no_hash

20/10/2020 14:32:49                     TestCVLRSS: hash_infos: []
20/10/2020 14:32:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:50              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=186 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:50                     TestCVLRSS: action: check_no_hash

20/10/2020 14:32:50                     TestCVLRSS: hash_infos: []
20/10/2020 14:32:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:51              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:51                     TestCVLRSS: action: save_hash

20/10/2020 14:32:51                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:32:51                     TestCVLRSS: action: ipv6-gtpu-pay

20/10/2020 14:32:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:52              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x883bc2c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:32:52                     TestCVLRSS: action: check_hash_different

20/10/2020 14:32:52                     TestCVLRSS: hash_infos: [('0x883bc2c5', '0x5')]
20/10/2020 14:32:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:53              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:53                     TestCVLRSS: action: save_hash

20/10/2020 14:32:53                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:32:53                     TestCVLRSS: action: ipv6-gtpu-eh-pay

20/10/2020 14:32:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:54              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x883bc2c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:32:54                     TestCVLRSS: action: check_hash_different

20/10/2020 14:32:54                     TestCVLRSS: hash_infos: [('0x883bc2c5', '0x5')]
20/10/2020 14:32:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:55              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:55                     TestCVLRSS: action: ipv6-gtpc-EchoRequest

20/10/2020 14:32:55                     TestCVLRSS: action: save_hash

20/10/2020 14:32:55                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:32:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:56              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4e32c70c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:32:56                     TestCVLRSS: action: check_hash_different

20/10/2020 14:32:56                     TestCVLRSS: hash_infos: [('0x4e32c70c', '0xc')]
20/10/2020 14:32:56                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:32:56              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:32:57              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:32:57              dut.10.240.183.67: flow list 0
20/10/2020 14:32:57              dut.10.240.183.67: 
20/10/2020 14:32:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:32:59              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=162 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 
port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x8100 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV4 L4_UDP  - l2_len=18 - l3_len=20 - 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 

20/10/2020 14:32:59                     TestCVLRSS: action: check_hash_different

20/10/2020 14:32:59                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3'), ('0x4ecc5ec3', '0x3')]
20/10/2020 14:32:59                     TestCVLRSS: sub_case mac_ipv4_gtpu_symmetric passed
20/10/2020 14:32:59              dut.10.240.183.67: flow flush 0
20/10/2020 14:32:59              dut.10.240.183.67: 
20/10/2020 14:32:59                     TestCVLRSS: {'mac_ipv4_gtpu_symmetric': 'passed'}
20/10/2020 14:32:59                     TestCVLRSS: pass rate is: 100.0
20/10/2020 14:32:59                     TestCVLRSS: Test Case test_mac_ipv4_gtpu_symmetric Result PASSED:
20/10/2020 14:32:59              dut.10.240.183.67: flow flush 0
20/10/2020 14:33:00              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:33:00              dut.10.240.183.67: clear port stats all
20/10/2020 14:33:01              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:33:01              dut.10.240.183.67: stop
20/10/2020 14:33:01              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

Done.
20/10/2020 14:33:01                     TestCVLRSS: Test Case test_mac_ipv6_gtpc Begin
20/10/2020 14:33:01              dut.10.240.183.67: 
20/10/2020 14:33:01                         tester: 
20/10/2020 14:33:01              dut.10.240.183.67: start
20/10/2020 14:33:01              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:33:01                     TestCVLRSS: ===================Test sub case: mac_ipv4_gtpc_l3src_only================
20/10/2020 14:33:01                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:33:01              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpc / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end 
20/10/2020 14:33:01              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:33:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpc / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end 
20/10/2020 14:33:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:33:02              dut.10.240.183.67: flow list 0
20/10/2020 14:33:02              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPC => RSS
20/10/2020 14:33:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:03              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:03                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoRequest'}

20/10/2020 14:33:03                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:04              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:04                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:04                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:05              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:05                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:05                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:06              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:06                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-EchoEesponse'}

20/10/2020 14:33:06                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:07              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:07                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:07                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:08              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:08                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:08                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:09              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:09                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-CreatePDPContextRequest'}

20/10/2020 14:33:09                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:10              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:10                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:10                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:11              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:11                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:11                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:13              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:13                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-CreatePDPContextResponse'}

20/10/2020 14:33:13                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:14              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:14                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:14                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:15              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:15                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:15                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:16              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:16                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:33:16                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:17              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:17                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:17                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:18              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:18                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:18                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:19              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:19                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:33:19                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:20              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:20                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:20                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:21              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:21                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:21                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:23              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:23                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-DeletePDPContextRequest'}

20/10/2020 14:33:23                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:24              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:24                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:24                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:25              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:25                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:25                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:26              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:26                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-DeletePDPContextResponse'}

20/10/2020 14:33:26                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:27              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:27                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:27                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:28              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:28                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:28                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:29              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:29                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-PDUNotificationRequest'}

20/10/2020 14:33:29                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:30              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:30                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:30                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:31              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:31                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:31                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:32              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:32                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:33:32                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:34              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:34                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:34                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:35              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:35                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:35                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:36              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:36                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-EchoRequest'}

20/10/2020 14:33:36                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:37              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:37                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:37                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:38              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:38                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:38                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:39              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:39                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-EchoEesponse'}

20/10/2020 14:33:39                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:40              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:40                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:40                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:41              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:41                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:41                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:42              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:42                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextRequest'}

20/10/2020 14:33:42                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:43              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:43                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:43                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:45              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:45                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:45                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:46              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:46                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextResponse'}

20/10/2020 14:33:46                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:47              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:47                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:47                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:48              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:48                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:48                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:49              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:49                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:33:49                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:50              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:50                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:50                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:51              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:51                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:51                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:52              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:52                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:33:52                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:53              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:53                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:53                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:55              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:55                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:55                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:56              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:56                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextRequest'}

20/10/2020 14:33:56                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:57              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:57                     TestCVLRSS: action: check_hash_different

20/10/2020 14:33:57                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:33:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:58              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:58                     TestCVLRSS: action: check_hash_same

20/10/2020 14:33:58                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:33:59              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:33:59                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextResponse'}

20/10/2020 14:33:59                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:33:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:00              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:00                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:00                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:34:00                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:01              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:01                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:01                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:34:01                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:02              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:02                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-PDUNotificationRequest'}

20/10/2020 14:34:02                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:34:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:03              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:03                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:03                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:34:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:04              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:04                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:04                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:34:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:06              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:06                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:34:06                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:34:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:07              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:07                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:07                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:34:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:08              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:08                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:08                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:34:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:09              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:34:09                     TestCVLRSS: action: save_hash

20/10/2020 14:34:09                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:34:09                     TestCVLRSS: action: ipv4-gtpu-pay

20/10/2020 14:34:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:10              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:34:10                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:10                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:34:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:11              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:11                     TestCVLRSS: action: save_hash

20/10/2020 14:34:11                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:34:11                     TestCVLRSS: action: ipv6-gtpu-eh-pay

20/10/2020 14:34:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:12              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:34:12                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:12                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:34:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:13              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=186 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:13                     TestCVLRSS: action: ipv6-gtpu-ipv4

20/10/2020 14:34:13                     TestCVLRSS: action: save_hash

20/10/2020 14:34:13                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:34:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:14              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=186 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:34:14                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:14                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:34:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:15              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=206 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:15                     TestCVLRSS: action: save_hash

20/10/2020 14:34:15                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:34:15                     TestCVLRSS: action: ipv6-gtpu-ipv6

20/10/2020 14:34:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:17              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=206 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:34:17                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:17                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:34:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:18              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:34:18                     TestCVLRSS: action: ipv4-gtpc-EchoRequest

20/10/2020 14:34:18                     TestCVLRSS: action: save_hash

20/10/2020 14:34:18                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:34:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:19              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:19                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:19                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:34:19                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:34:19              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:34:20              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:34:20              dut.10.240.183.67: flow list 0
20/10/2020 14:34:20              dut.10.240.183.67: 
20/10/2020 14:34:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:21              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:21                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:21                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8')]
20/10/2020 14:34:21                     TestCVLRSS: sub_case mac_ipv4_gtpc_l3src_only passed
20/10/2020 14:34:21              dut.10.240.183.67: flow flush 0
20/10/2020 14:34:21              dut.10.240.183.67: 
20/10/2020 14:34:21                     TestCVLRSS: ===================Test sub case: mac_ipv6_gtpc_l3dst_only================
20/10/2020 14:34:21                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:34:21              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpc / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end 
20/10/2020 14:34:21              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:34:21              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpc / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end 
20/10/2020 14:34:21              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:34:21              dut.10.240.183.67: flow list 0
20/10/2020 14:34:21              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPC => RSS
20/10/2020 14:34:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:23              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:23                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoRequest'}

20/10/2020 14:34:23                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:24              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:24                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:24                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:34:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:25              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:25                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:25                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:26              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:26                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-EchoEesponse'}

20/10/2020 14:34:26                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:27              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:27                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:27                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:34:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:28              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:28                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:28                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:29              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:29                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-CreatePDPContextRequest'}

20/10/2020 14:34:29                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:30              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:30                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:30                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:34:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:31              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:31                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:31                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:32                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-CreatePDPContextResponse'}

20/10/2020 14:34:32                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:34              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:34                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:34                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:34:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:35              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:35                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:35                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:36              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:36                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:34:36                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:37              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:37                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:37                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:34:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:38              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:38                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:38                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:39              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:39                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:34:39                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:40              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:40                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:40                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:34:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:41              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:41                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:41                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:42              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:42                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-DeletePDPContextRequest'}

20/10/2020 14:34:42                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:44              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:44                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:44                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:34:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:45              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:45                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:45                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:46              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:46                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-DeletePDPContextResponse'}

20/10/2020 14:34:46                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:47              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:47                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:47                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:34:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:48              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:48                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:48                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:49              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:49                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-PDUNotificationRequest'}

20/10/2020 14:34:49                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:50              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:50                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:50                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:34:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:51              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:51                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:51                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:52              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:52                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:34:52                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:53              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:53                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:53                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:34:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:55              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:55                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:55                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:56              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:56                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-EchoRequest'}

20/10/2020 14:34:56                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:57              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:57                     TestCVLRSS: action: check_hash_different

20/10/2020 14:34:57                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:34:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:58              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:58                     TestCVLRSS: action: check_hash_same

20/10/2020 14:34:58                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:34:59              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:34:59                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-EchoEesponse'}

20/10/2020 14:34:59                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:34:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:00              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:00                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:00                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:35:00                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:01              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:01                     TestCVLRSS: action: check_hash_same

20/10/2020 14:35:01                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:01                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:02              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:02                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextRequest'}

20/10/2020 14:35:02                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:03              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:03                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:03                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:35:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:04              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:04                     TestCVLRSS: action: check_hash_same

20/10/2020 14:35:04                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:06              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:06                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextResponse'}

20/10/2020 14:35:06                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:07              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:07                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:07                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:35:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:08              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:08                     TestCVLRSS: action: check_hash_same

20/10/2020 14:35:08                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:09              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:09                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:35:09                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:10              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:10                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:10                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:35:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:11              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:11                     TestCVLRSS: action: check_hash_same

20/10/2020 14:35:11                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:12              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:12                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:35:12                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:13              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:13                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:13                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:35:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:14              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:14                     TestCVLRSS: action: check_hash_same

20/10/2020 14:35:14                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:16              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:16                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextRequest'}

20/10/2020 14:35:16                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:17              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:17                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:17                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:35:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:18              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:18                     TestCVLRSS: action: check_hash_same

20/10/2020 14:35:18                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:19              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:19                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextResponse'}

20/10/2020 14:35:19                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:20              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:20                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:20                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:35:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:21              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:21                     TestCVLRSS: action: check_hash_same

20/10/2020 14:35:21                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:22              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:22                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-PDUNotificationRequest'}

20/10/2020 14:35:22                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:23              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:23                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:23                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:35:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:24              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:24                     TestCVLRSS: action: check_hash_same

20/10/2020 14:35:24                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:25              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:25                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:35:25                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:27              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:27                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:27                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:35:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:28              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:28                     TestCVLRSS: action: check_hash_same

20/10/2020 14:35:28                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:35:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:29              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:29                     TestCVLRSS: action: save_hash

20/10/2020 14:35:29                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:35:29                     TestCVLRSS: action: ipv6-gtpu-pay

20/10/2020 14:35:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:30              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:35:30                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:30                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:35:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:31              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:31                     TestCVLRSS: action: save_hash

20/10/2020 14:35:31                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:35:31                     TestCVLRSS: action: ipv6-gtpu-eh-pay

20/10/2020 14:35:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:32              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:35:32                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:32                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:35:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:33              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=186 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:33                     TestCVLRSS: action: ipv6-gtpu-ipv4

20/10/2020 14:35:33                     TestCVLRSS: action: save_hash

20/10/2020 14:35:33                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:35:33                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:34              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=186 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:35:34                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:34                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:35:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:35              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=206 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:35                     TestCVLRSS: action: save_hash

20/10/2020 14:35:35                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:35:35                     TestCVLRSS: action: ipv6-gtpu-ipv6

20/10/2020 14:35:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:37              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=206 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:35:37                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:37                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:35:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:38              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:35:38                     TestCVLRSS: action: ipv4-gtpc-EchoRequest

20/10/2020 14:35:38                     TestCVLRSS: action: save_hash

20/10/2020 14:35:38                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:35:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:39              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:39                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:39                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:35:39                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:35:39              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:35:40              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:35:40              dut.10.240.183.67: flow list 0
20/10/2020 14:35:40              dut.10.240.183.67: 
20/10/2020 14:35:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:41              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:41                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:41                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8')]
20/10/2020 14:35:41                     TestCVLRSS: sub_case mac_ipv6_gtpc_l3dst_only passed
20/10/2020 14:35:41              dut.10.240.183.67: flow flush 0
20/10/2020 14:35:41              dut.10.240.183.67: 
20/10/2020 14:35:41                     TestCVLRSS: ===================Test sub case: mac_ipv6_gtpc_l3_src_only_l3_dst_only================
20/10/2020 14:35:41                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:35:41              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpc / end actions rss types ipv6 end key_len 0 queues end / end 
20/10/2020 14:35:41              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:35:41              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpc / end actions rss types ipv6 end key_len 0 queues end / end 
20/10/2020 14:35:41              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:35:41              dut.10.240.183.67: flow list 0
20/10/2020 14:35:41              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPC => RSS
20/10/2020 14:35:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:43              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:43                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-EchoRequest'}

20/10/2020 14:35:43                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:35:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:44              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:35:44                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:44                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:35:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:45              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:35:45                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:45                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:35:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:46              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:46                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:46                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:35:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:47              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:47                     TestCVLRSS: action: check_hash_same

20/10/2020 14:35:47                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:35:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:48              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:48                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-EchoEesponse'}

20/10/2020 14:35:48                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:35:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:49              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:35:49                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:49                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:35:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:50              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:35:50                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:50                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:35:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:51              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:51                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:51                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:35:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:52              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:52                     TestCVLRSS: action: check_hash_same

20/10/2020 14:35:52                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:35:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:54              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:54                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-CreatePDPContextRequest'}

20/10/2020 14:35:54                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:35:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:55              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:35:55                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:55                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:35:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:56              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:35:56                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:56                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:35:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:57              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:57                     TestCVLRSS: action: check_hash_different

20/10/2020 14:35:57                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:35:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:58              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:58                     TestCVLRSS: action: check_hash_same

20/10/2020 14:35:58                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:35:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:35:59              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:35:59                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-CreatePDPContextResponse'}

20/10/2020 14:35:59                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:35:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:00              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:00                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:00                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:36:00                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:01              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:01                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:01                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:36:01                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:02              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:02                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:02                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:36:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:03              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:03                     TestCVLRSS: action: check_hash_same

20/10/2020 14:36:03                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:05              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:05                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:36:05                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:06              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:06                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:06                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:36:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:07              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:07                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:07                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:36:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:08              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:08                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:08                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:36:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:09              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:09                     TestCVLRSS: action: check_hash_same

20/10/2020 14:36:09                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:10              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:10                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:36:10                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:11              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:11                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:11                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:36:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:12              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:12                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:12                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:36:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:13              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:13                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:13                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:36:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:14              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:14                     TestCVLRSS: action: check_hash_same

20/10/2020 14:36:14                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:16              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:16                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-DeletePDPContextRequest'}

20/10/2020 14:36:16                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:17              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:17                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:17                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:36:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:18              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:18                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:18                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:36:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:19              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:19                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:19                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:36:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:20              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:20                     TestCVLRSS: action: check_hash_same

20/10/2020 14:36:20                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:21              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:21                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-DeletePDPContextResponse'}

20/10/2020 14:36:21                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:22              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:22                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:22                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:36:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:23              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:23                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:23                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:36:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:24              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:24                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:24                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:36:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:25              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:25                     TestCVLRSS: action: check_hash_same

20/10/2020 14:36:25                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:27              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:27                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-PDUNotificationRequest'}

20/10/2020 14:36:27                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:28              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:28                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:28                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:36:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:29              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:29                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:29                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:36:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:30              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:30                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:30                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:36:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:31              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:31                     TestCVLRSS: action: check_hash_same

20/10/2020 14:36:31                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:32              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:32                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:36:32                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:33              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:33                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:33                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:36:33                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:34              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:36:34                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:34                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:36:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:35              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:35                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:35                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:36:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:37              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:37                     TestCVLRSS: action: check_hash_same

20/10/2020 14:36:37                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:38              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:38                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-EchoRequest'}

20/10/2020 14:36:38                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:39              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:36:39                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:39                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:36:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:40              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:40                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:40                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:36:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:41              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:41                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:41                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:36:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:42              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:42                     TestCVLRSS: action: check_hash_same

20/10/2020 14:36:42                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:43              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:43                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-EchoEesponse'}

20/10/2020 14:36:43                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:44              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:36:44                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:44                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:36:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:45              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:45                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:45                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:36:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:46              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:46                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:46                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:36:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:48              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:48                     TestCVLRSS: action: check_hash_same

20/10/2020 14:36:48                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:49              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:49                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextRequest'}

20/10/2020 14:36:49                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:50              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:36:50                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:50                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:36:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:51              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:51                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:51                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:36:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:52              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:52                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:52                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:36:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:53              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:53                     TestCVLRSS: action: check_hash_same

20/10/2020 14:36:53                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:54              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:54                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextResponse'}

20/10/2020 14:36:54                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:55              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:36:55                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:55                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:36:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:56              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:56                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:56                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:36:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:57              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:57                     TestCVLRSS: action: check_hash_different

20/10/2020 14:36:57                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:36:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:36:59              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:36:59                     TestCVLRSS: action: check_hash_same

20/10/2020 14:36:59                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:36:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:00              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:00                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:37:00                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:37:00                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:01              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:37:01                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:01                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:37:01                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:02              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:02                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:02                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:37:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:03              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:03                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:03                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:37:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:04              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:04                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:04                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:37:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:05              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:05                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:37:05                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:37:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:06              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:37:06                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:06                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:37:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:07              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:07                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:07                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:37:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:09              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:09                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:09                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:37:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:10              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:10                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:10                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:37:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:11              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:11                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextRequest'}

20/10/2020 14:37:11                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:37:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:12              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:37:12                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:12                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:37:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:13              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:13                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:13                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:37:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:14              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:14                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:14                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:37:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:15              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:15                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:15                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:37:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:16              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:16                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextResponse'}

20/10/2020 14:37:16                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:37:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:17              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:37:17                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:17                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:37:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:18              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:18                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:18                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:37:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:20              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:20                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:20                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:37:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:21              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:21                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:21                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:37:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:22              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:22                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-PDUNotificationRequest'}

20/10/2020 14:37:22                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:37:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:23              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:37:23                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:23                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:37:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:24              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:24                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:24                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:37:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:25              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:25                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:25                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:37:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:26              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:26                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:26                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:37:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:27              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:27                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:37:27                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:37:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:28              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:37:28                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:28                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:37:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:30              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:30                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:30                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:37:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:31              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:31                     TestCVLRSS: action: check_hash_different

20/10/2020 14:37:31                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:37:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:32              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:37:32                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:32                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:37:32                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:37:32              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:37:33              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:37:33              dut.10.240.183.67: flow list 0
20/10/2020 14:37:33              dut.10.240.183.67: 
20/10/2020 14:37:33                     TestCVLRSS: sub_case mac_ipv6_gtpc_l3_src_only_l3_dst_only passed
20/10/2020 14:37:33              dut.10.240.183.67: flow flush 0
20/10/2020 14:37:33              dut.10.240.183.67: 
20/10/2020 14:37:33                     TestCVLRSS: {'mac_ipv4_gtpc_l3src_only': 'passed', 'mac_ipv6_gtpc_l3dst_only': 'passed', 'mac_ipv6_gtpc_l3_src_only_l3_dst_only': 'passed'}
20/10/2020 14:37:33                     TestCVLRSS: pass rate is: 100.0
20/10/2020 14:37:33                     TestCVLRSS: Test Case test_mac_ipv6_gtpc Result PASSED:
20/10/2020 14:37:33              dut.10.240.183.67: flow flush 0
20/10/2020 14:37:34              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:37:34              dut.10.240.183.67: clear port stats all
20/10/2020 14:37:35              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:37:35              dut.10.240.183.67: stop
20/10/2020 14:37:35              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 14:37:35                     TestCVLRSS: Test Case test_mac_ipv6_gtpc_symmetric Begin
20/10/2020 14:37:36              dut.10.240.183.67: 
20/10/2020 14:37:36                         tester: 
20/10/2020 14:37:36              dut.10.240.183.67: start
20/10/2020 14:37:36              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:37:36                     TestCVLRSS: ===================Test sub case: mac_ipv6_gtpc_symmetric================
20/10/2020 14:37:36                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:37:36              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpc / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 14:37:36              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:37:36              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpc / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 14:37:36              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:37:36              dut.10.240.183.67: flow list 0
20/10/2020 14:37:36              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPC => RSS
20/10/2020 14:37:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:37              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:37                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-EchoRequest'}

20/10/2020 14:37:37                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:38              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:38                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:38                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:39              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:39                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-EchoEesponse'}

20/10/2020 14:37:39                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:40              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:40                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:40                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:41              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:41                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-CreatePDPContextRequest'}

20/10/2020 14:37:41                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:43              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:43                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:43                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:44              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:44                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-CreatePDPContextResponse'}

20/10/2020 14:37:44                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:45              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:45                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:45                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:46              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:46                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:37:46                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:47              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:47                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:47                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:48              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:48                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:37:48                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:49              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:49                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:49                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:50              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:50                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-DeletePDPContextRequest'}

20/10/2020 14:37:50                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:51              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:51                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:51                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:52              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:52                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-DeletePDPContextResponse'}

20/10/2020 14:37:52                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:54              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:54                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:54                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:55              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:55                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-PDUNotificationRequest'}

20/10/2020 14:37:55                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:56              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:56                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:56                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:57              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:57                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:37:57                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:58              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:37:58                     TestCVLRSS: action: check_hash_same

20/10/2020 14:37:58                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:37:59              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:37:59                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-EchoRequest'}

20/10/2020 14:37:59                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:37:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:00              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:00                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:00                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:00                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:01              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:01                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-EchoEesponse'}

20/10/2020 14:38:01                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:01                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:02              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:02                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:02                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:03              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:03                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextRequest'}

20/10/2020 14:38:03                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:05              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:05                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:05                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:06              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:06                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-CreatePDPContextResponse'}

20/10/2020 14:38:06                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:07              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:07                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:07                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:08              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:08                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextRequest'}

20/10/2020 14:38:08                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:09              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:09                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:09                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:10              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:10                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-UpdatePDPContextResponse'}

20/10/2020 14:38:10                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:11              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:11                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:11                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:12              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:12                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextRequest'}

20/10/2020 14:38:12                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:13              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:13                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:13                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:15              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:15                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-DeletePDPContextResponse'}

20/10/2020 14:38:15                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:16              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:16                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:16                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:17              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:17                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-PDUNotificationRequest'}

20/10/2020 14:38:17                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:18              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:18                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:18                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:19              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:19                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpc-SupportedExtensionHeadersNotification'}

20/10/2020 14:38:19                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:20              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:38:20                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:20                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:38:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:21              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=206 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:21                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-ipv6'}

20/10/2020 14:38:21                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:38:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:22              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=206 - nb_segs=1 - RSS hash=0x883bc2c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:38:22                     TestCVLRSS: action: check_hash_different

20/10/2020 14:38:22                     TestCVLRSS: hash_infos: [('0x883bc2c5', '0x5')]
20/10/2020 14:38:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:23              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=186 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:23                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-ipv4'}

20/10/2020 14:38:23                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:38:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:24              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=186 - nb_segs=1 - RSS hash=0x883bc2c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:38:24                     TestCVLRSS: action: check_hash_different

20/10/2020 14:38:24                     TestCVLRSS: hash_infos: [('0x883bc2c5', '0x5')]
20/10/2020 14:38:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:26              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:26                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-pay'}

20/10/2020 14:38:26                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:38:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:27              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x883bc2c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:38:27                     TestCVLRSS: action: check_hash_different

20/10/2020 14:38:27                     TestCVLRSS: hash_infos: [('0x883bc2c5', '0x5')]
20/10/2020 14:38:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:28              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:28                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-eh-pay'}

20/10/2020 14:38:28                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:38:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:29              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x883bc2c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:38:29                     TestCVLRSS: action: check_hash_different

20/10/2020 14:38:29                     TestCVLRSS: hash_infos: [('0x883bc2c5', '0x5')]
20/10/2020 14:38:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:30              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:38:30                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpc-EchoRequest'}

20/10/2020 14:38:30                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:38:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:31              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=60 - nb_segs=1 - RSS hash=0x4e32c70c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =28817, Destination UDP port =2123, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:31                     TestCVLRSS: action: check_hash_different

20/10/2020 14:38:31                     TestCVLRSS: hash_infos: [('0x4e32c70c', '0xc')]
20/10/2020 14:38:31                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:38:31              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:38:32              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:38:32              dut.10.240.183.67: flow list 0
20/10/2020 14:38:32              dut.10.240.183.67: 
20/10/2020 14:38:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:34              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=109 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=146 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=103 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=79 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=78 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=113 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=150 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=107 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=83 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:34                     TestCVLRSS: action: check_hash_different

20/10/2020 14:38:34                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8')]
20/10/2020 14:38:34                     TestCVLRSS: sub_case mac_ipv6_gtpc_symmetric passed
20/10/2020 14:38:34              dut.10.240.183.67: flow flush 0
20/10/2020 14:38:34              dut.10.240.183.67: 
20/10/2020 14:38:34                     TestCVLRSS: {'mac_ipv6_gtpc_symmetric': 'passed'}
20/10/2020 14:38:34                     TestCVLRSS: pass rate is: 100.0
20/10/2020 14:38:34                     TestCVLRSS: Test Case test_mac_ipv6_gtpc_symmetric Result PASSED:
20/10/2020 14:38:34              dut.10.240.183.67: flow flush 0
20/10/2020 14:38:35              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:38:35              dut.10.240.183.67: clear port stats all
20/10/2020 14:38:36              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:38:36              dut.10.240.183.67: stop
20/10/2020 14:38:36              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

Done.
20/10/2020 14:38:36                     TestCVLRSS: Test Case test_mac_ipv6_gtpu Begin
20/10/2020 14:38:36              dut.10.240.183.67: 
20/10/2020 14:38:36                         tester: 
20/10/2020 14:38:36              dut.10.240.183.67: start
20/10/2020 14:38:36              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:38:36                     TestCVLRSS: ===================Test sub case: mac_ipv6_gtpu_l3src_only================
20/10/2020 14:38:36                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:38:36              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 14:38:36              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:38:36              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 14:38:36              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:38:36              dut.10.240.183.67: flow list 0
20/10/2020 14:38:36              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU => RSS
20/10/2020 14:38:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:38              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:38                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-pay'}

20/10/2020 14:38:38                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:38:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:39              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:39                     TestCVLRSS: action: check_hash_different

20/10/2020 14:38:39                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:38:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:40              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:40                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:40                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:38:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:41              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:41                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-eh-pay'}

20/10/2020 14:38:41                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:38:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:42              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:42                     TestCVLRSS: action: check_hash_different

20/10/2020 14:38:42                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:38:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:43              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:43                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:43                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:38:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:44              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:44                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-echo-request'}

20/10/2020 14:38:44                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:38:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:45              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:45                     TestCVLRSS: action: check_hash_different

20/10/2020 14:38:45                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:38:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:46              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:46                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:46                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:38:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:47              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:47                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-echo-reponse'}

20/10/2020 14:38:47                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:38:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:49              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:49                     TestCVLRSS: action: check_hash_different

20/10/2020 14:38:49                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:38:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:50              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:50                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:50                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:38:50                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:51              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:51                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-pay'}

20/10/2020 14:38:51                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:38:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:52              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:52                     TestCVLRSS: action: check_hash_different

20/10/2020 14:38:52                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:38:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:53              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:53                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:53                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:38:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:54              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:54                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-eh-pay'}

20/10/2020 14:38:54                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:38:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:55              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:55                     TestCVLRSS: action: check_hash_different

20/10/2020 14:38:55                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:38:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:56              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:56                     TestCVLRSS: action: check_hash_same

20/10/2020 14:38:56                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:38:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:57              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:57                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-echo-request'}

20/10/2020 14:38:57                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:38:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:38:58              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:38:58                     TestCVLRSS: action: check_hash_different

20/10/2020 14:38:58                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:38:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:00              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:00                     TestCVLRSS: action: check_hash_same

20/10/2020 14:39:00                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:39:00                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:01              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:01                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-echo-reponse'}

20/10/2020 14:39:01                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:39:01                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:02              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xe84e0ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:02                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:02                     TestCVLRSS: hash_infos: [('0xe84e0ef', '0xf')]
20/10/2020 14:39:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:03              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x613a79d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:03                     TestCVLRSS: action: check_hash_same

20/10/2020 14:39:03                     TestCVLRSS: hash_infos: [('0x613a79d1', '0x1')]
20/10/2020 14:39:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:04              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=198 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:04                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-eh-ipv4'}

20/10/2020 14:39:04                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:39:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:05              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=198 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:39:05                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:05                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:39:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:06              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=186 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:06                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-ipv4'}

20/10/2020 14:39:06                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:39:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:07              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=186 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:39:07                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:07                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:39:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:08              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=218 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:08                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-eh-ipv6'}

20/10/2020 14:39:08                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:39:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:10              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=218 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:39:10                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:10                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:39:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:11              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=206 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:11                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-ipv6'}

20/10/2020 14:39:11                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:39:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:12              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=206 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:39:12                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:12                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:39:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:13              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:39:13                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-pay'}

20/10/2020 14:39:13                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:39:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:14              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:14                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:14                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:39:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:15              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:39:15                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-eh-pay'}

20/10/2020 14:39:15                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:39:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:16              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x53995af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:16                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:16                     TestCVLRSS: hash_infos: [('0x53995af', '0xf')]
20/10/2020 14:39:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:17              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:17                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-EchoRequest'}

20/10/2020 14:39:17                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:39:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:18              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:39:18                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:18                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:39:18                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:39:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:39:19              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:39:19              dut.10.240.183.67: flow list 0
20/10/2020 14:39:19              dut.10.240.183.67: 
20/10/2020 14:39:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:21              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:21                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:21                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8')]
20/10/2020 14:39:21                     TestCVLRSS: sub_case mac_ipv6_gtpu_l3src_only passed
20/10/2020 14:39:21              dut.10.240.183.67: flow flush 0
20/10/2020 14:39:21              dut.10.240.183.67: 
20/10/2020 14:39:21                     TestCVLRSS: ===================Test sub case: mac_ipv6_gtpu_l3dst_only================
20/10/2020 14:39:21                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:39:21              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 14:39:21              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:39:21              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 14:39:21              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:39:21              dut.10.240.183.67: flow list 0
20/10/2020 14:39:21              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU => RSS
20/10/2020 14:39:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:22              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:22                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-pay'}

20/10/2020 14:39:22                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:23              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:23                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:23                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:39:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:24              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:24                     TestCVLRSS: action: check_hash_same

20/10/2020 14:39:24                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:25              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:25                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-eh-pay'}

20/10/2020 14:39:25                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:26              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:26                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:26                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:39:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:27              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:27                     TestCVLRSS: action: check_hash_same

20/10/2020 14:39:27                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:29              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:29                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-echo-request'}

20/10/2020 14:39:29                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:29                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:30              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:30                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:30                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:39:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:31              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:31                     TestCVLRSS: action: check_hash_same

20/10/2020 14:39:31                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:32                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-echo-reponse'}

20/10/2020 14:39:32                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:33              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:33                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:33                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:39:33                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:34              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:34                     TestCVLRSS: action: check_hash_same

20/10/2020 14:39:34                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:35              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:35                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-pay'}

20/10/2020 14:39:35                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:36              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:36                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:36                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:39:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:37                     TestCVLRSS: action: check_hash_same

20/10/2020 14:39:37                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:38              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:38                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-eh-pay'}

20/10/2020 14:39:38                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:40              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:40                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:40                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:39:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:41              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:41                     TestCVLRSS: action: check_hash_same

20/10/2020 14:39:41                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:41                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:42              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:42                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-echo-request'}

20/10/2020 14:39:42                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:43              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:43                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:43                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:39:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:44              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:44                     TestCVLRSS: action: check_hash_same

20/10/2020 14:39:44                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:45              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:45                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-echo-reponse'}

20/10/2020 14:39:45                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:46              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xf0897811 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:46                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:46                     TestCVLRSS: hash_infos: [('0xf0897811', '0x1')]
20/10/2020 14:39:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:47              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x28e8adb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:47                     TestCVLRSS: action: check_hash_same

20/10/2020 14:39:47                     TestCVLRSS: hash_infos: [('0x28e8adb0', '0x0')]
20/10/2020 14:39:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:48              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=198 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:48                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-eh-ipv4'}

20/10/2020 14:39:48                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:39:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:49              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=198 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:39:49                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:49                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:39:49                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:51              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=186 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:51                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-ipv4'}

20/10/2020 14:39:51                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:39:51                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:52              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=186 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:39:52                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:52                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:39:52                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:53              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=218 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:53                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-eh-ipv6'}

20/10/2020 14:39:53                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:39:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:54              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=218 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:39:54                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:54                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:39:54                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:55              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=206 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:55                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-ipv6'}

20/10/2020 14:39:55                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:39:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:56              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=206 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:39:56                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:56                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:39:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:57              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:39:57                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-pay'}

20/10/2020 14:39:57                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:39:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:58              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:39:58                     TestCVLRSS: action: check_hash_different

20/10/2020 14:39:58                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:39:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:39:59              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:39:59                     TestCVLRSS: action: {'save_hash': 'ipv4-gtpu-eh-pay'}

20/10/2020 14:39:59                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:39:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:00              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x8546d948 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:00                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:00                     TestCVLRSS: hash_infos: [('0x8546d948', '0x8')]
20/10/2020 14:40:00                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:02              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:02                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpc-EchoRequest'}

20/10/2020 14:40:02                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:03              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:40:03                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:03                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:40:03                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:40:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:40:04              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:40:04              dut.10.240.183.67: flow list 0
20/10/2020 14:40:04              dut.10.240.183.67: 
20/10/2020 14:40:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:05              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:05                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:05                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8')]
20/10/2020 14:40:05                     TestCVLRSS: sub_case mac_ipv6_gtpu_l3dst_only passed
20/10/2020 14:40:05              dut.10.240.183.67: flow flush 0
20/10/2020 14:40:05              dut.10.240.183.67: 
20/10/2020 14:40:05                     TestCVLRSS: ===================Test sub case: mac_ipv6_gtpu_l3_src_only_l3_dst_only================
20/10/2020 14:40:05                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:40:05              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 14:40:05              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:40:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 14:40:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:40:05              dut.10.240.183.67: flow list 0
20/10/2020 14:40:05              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU => RSS
20/10/2020 14:40:05                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:06              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:06                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-pay'}

20/10/2020 14:40:06                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:08              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:40:08                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:08                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:40:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:09              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:40:09                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:09                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:40:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:10              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:10                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:10                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:40:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:11              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:11                     TestCVLRSS: action: check_hash_same

20/10/2020 14:40:11                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:12              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:12                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-eh-pay'}

20/10/2020 14:40:12                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:13              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:40:13                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:13                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:40:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:14              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:40:14                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:14                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:40:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:15              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:15                     TestCVLRSS: action: heck_hash_different

20/10/2020 14:40:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:16              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:16                     TestCVLRSS: action: check_hash_same

20/10/2020 14:40:16                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:16                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:17              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:17                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-echo-request'}

20/10/2020 14:40:17                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:19              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:40:19                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:19                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:40:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:20              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:40:20                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:20                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:40:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:21              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:21                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:21                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:40:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:22              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:22                     TestCVLRSS: action: check_hash_same

20/10/2020 14:40:22                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:23              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:23                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-echo-reponse'}

20/10/2020 14:40:23                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:24              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:40:24                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:24                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:40:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:25              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:40:25                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:25                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:40:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:26              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:26                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:26                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:40:26                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:27              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:27                     TestCVLRSS: action: check_hash_same

20/10/2020 14:40:27                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:27                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:28              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:28                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-pay'}

20/10/2020 14:40:28                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:30              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:40:30                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:30                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:40:30                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:31              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:31                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:31                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:40:31                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:32              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:32                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:32                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:40:32                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:33              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:33                     TestCVLRSS: action: check_hash_same

20/10/2020 14:40:33                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:33                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:34              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:34                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-eh-pay'}

20/10/2020 14:40:34                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:34                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:35              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:40:35                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:35                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:40:35                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:36              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:36                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:36                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:40:36                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:37              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:37                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:37                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:40:37                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:38              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:38                     TestCVLRSS: action: check_hash_same

20/10/2020 14:40:38                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:38                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:39              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:39                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-echo-request'}

20/10/2020 14:40:39                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:39                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:40              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:40:40                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:40                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:40:40                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:42              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:42                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:42                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:40:42                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:43              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:43                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:43                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:40:43                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:44              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:44                     TestCVLRSS: action: check_hash_same

20/10/2020 14:40:44                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:44                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:45              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:45                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-echo-reponse'}

20/10/2020 14:40:45                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:45                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:46              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x9c3eea22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - 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 

20/10/2020 14:40:46                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:46                     TestCVLRSS: hash_infos: [('0x9c3eea22', '0x2')]
20/10/2020 14:40:46                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:47              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x237025c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x6
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:47                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:47                     TestCVLRSS: hash_infos: [('0x237025c6', '0x6')]
20/10/2020 14:40:47                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:48              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xf380731c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:48                     TestCVLRSS: action: check_hash_different

20/10/2020 14:40:48                     TestCVLRSS: hash_infos: [('0xf380731c', '0xc')]
20/10/2020 14:40:48                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:49              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:40:49                     TestCVLRSS: action: check_hash_same

20/10/2020 14:40:49                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:40:49                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:40:49              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:40:50              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:40:50              dut.10.240.183.67: flow list 0
20/10/2020 14:40:50              dut.10.240.183.67: 
20/10/2020 14:40:50                     TestCVLRSS: sub_case mac_ipv6_gtpu_l3_src_only_l3_dst_only passed
20/10/2020 14:40:50              dut.10.240.183.67: flow flush 0
20/10/2020 14:40:51              dut.10.240.183.67: 
20/10/2020 14:40:51                     TestCVLRSS: {'mac_ipv6_gtpu_l3src_only': 'passed', 'mac_ipv6_gtpu_l3dst_only': 'passed', 'mac_ipv6_gtpu_l3_src_only_l3_dst_only': 'passed'}
20/10/2020 14:40:51                     TestCVLRSS: pass rate is: 100.0
20/10/2020 14:40:51                     TestCVLRSS: Test Case test_mac_ipv6_gtpu Result PASSED:
20/10/2020 14:40:51              dut.10.240.183.67: flow flush 0
20/10/2020 14:40:52              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:40:52              dut.10.240.183.67: clear port stats all
20/10/2020 14:40:53              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:40:53              dut.10.240.183.67: stop
20/10/2020 14:40:53              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 14:40:53                     TestCVLRSS: Test Case test_mac_ipv6_gtpu_symmetric Begin
20/10/2020 14:40:53              dut.10.240.183.67: 
20/10/2020 14:40:53                         tester: 
20/10/2020 14:40:53              dut.10.240.183.67: start
20/10/2020 14:40:53              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:40:53                     TestCVLRSS: ===================Test sub case: mac_ipv6_gtpu_symmetric================
20/10/2020 14:40:53                     TestCVLRSS: ------------handle test--------------
20/10/2020 14:40:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 14:40:53              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:40:53              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 14:40:53              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:40:53              dut.10.240.183.67: flow list 0
20/10/2020 14:40:53              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU => RSS
20/10/2020 14:40:53                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:55              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:40:55                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-pay'}

20/10/2020 14:40:55                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:40:55                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:56              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:40:56                     TestCVLRSS: action: check_hash_same

20/10/2020 14:40:56                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:40:56                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:57              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:40:57                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-eh-pay'}

20/10/2020 14:40:57                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:40:57                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:58              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:40:58                     TestCVLRSS: action: check_hash_same

20/10/2020 14:40:58                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:40:58                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:40:59              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:40:59                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-echo-request'}

20/10/2020 14:40:59                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:40:59                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:00              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:41:00                     TestCVLRSS: action: check_hash_same

20/10/2020 14:41:00                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:41:00                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:01              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:41:01                     TestCVLRSS: action: {'save_hash': 'ipv6-gtpu-echo-reponse'}

20/10/2020 14:41:01                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:41:01                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:02              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:41:02                     TestCVLRSS: action: check_hash_same

20/10/2020 14:41:02                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:41:02                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:03              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:41:03                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-pay'}

20/10/2020 14:41:03                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:41:03                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:04              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:41:04                     TestCVLRSS: action: check_hash_same

20/10/2020 14:41:04                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:41:04                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:06              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:41:06                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-eh-pay'}

20/10/2020 14:41:06                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:41:06                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:07              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:41:07                     TestCVLRSS: action: check_hash_same

20/10/2020 14:41:07                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:41:07                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:08              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:41:08                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-echo-request'}

20/10/2020 14:41:08                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:41:08                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:09              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:41:09                     TestCVLRSS: action: check_hash_same

20/10/2020 14:41:09                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:41:09                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:10              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:41:10                     TestCVLRSS: action: {'save_hash': 'vlan-ipv6-gtpu-echo-reponse'}

20/10/2020 14:41:10                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:41:10                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:11              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0xc4f57e3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - 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 

20/10/2020 14:41:11                     TestCVLRSS: action: check_hash_same

20/10/2020 14:41:11                     TestCVLRSS: hash_infos: [('0xc4f57e3d', '0xd')]
20/10/2020 14:41:11                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:12              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=198 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:41:12                     TestCVLRSS: action: save_hash

20/10/2020 14:41:12                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:41:12                     TestCVLRSS: action: ipv6-gtpu-eh-ipv4

20/10/2020 14:41:12                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:13              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=198 - nb_segs=1 - RSS hash=0x883bc2c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:41:13                     TestCVLRSS: action: check_hash_different

20/10/2020 14:41:13                     TestCVLRSS: hash_infos: [('0x883bc2c5', '0x5')]
20/10/2020 14:41:13                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:14              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=186 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:41:14                     TestCVLRSS: action: ipv6-gtpu-ipv4

20/10/2020 14:41:14                     TestCVLRSS: action: save_hash

20/10/2020 14:41:14                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:41:14                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:15              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=186 - nb_segs=1 - RSS hash=0x883bc2c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:41:15                     TestCVLRSS: action: check_hash_different

20/10/2020 14:41:15                     TestCVLRSS: hash_infos: [('0x883bc2c5', '0x5')]
20/10/2020 14:41:15                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:16              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=218 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:41:16                     TestCVLRSS: action: save_hash

20/10/2020 14:41:16                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:41:16                     TestCVLRSS: action: ipv6-gtpu-eh-ipv6

20/10/2020 14:41:17                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:18              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=218 - nb_segs=1 - RSS hash=0x883bc2c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:41:18                     TestCVLRSS: action: check_hash_different

20/10/2020 14:41:18                     TestCVLRSS: hash_infos: [('0x883bc2c5', '0x5')]
20/10/2020 14:41:18                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:19              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=206 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:41:19                     TestCVLRSS: action: save_hash

20/10/2020 14:41:19                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:41:19                     TestCVLRSS: action: ipv6-gtpu-ipv6

20/10/2020 14:41:19                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:20              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=206 - nb_segs=1 - RSS hash=0x883bc2c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:41:20                     TestCVLRSS: action: check_hash_different

20/10/2020 14:41:20                     TestCVLRSS: hash_infos: [('0x883bc2c5', '0x5')]
20/10/2020 14:41:20                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:21              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:41:21                     TestCVLRSS: action: save_hash

20/10/2020 14:41:21                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:41:21                     TestCVLRSS: action: ipv4-gtpu-pay

20/10/2020 14:41:21                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:22              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=146 - nb_segs=1 - RSS hash=0x4e32c70c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:41:22                     TestCVLRSS: action: check_hash_different

20/10/2020 14:41:22                     TestCVLRSS: hash_infos: [('0x4e32c70c', '0xc')]
20/10/2020 14:41:22                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:23              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x4ecc5ec3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - 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 

20/10/2020 14:41:23                     TestCVLRSS: action: save_hash

20/10/2020 14:41:23                     TestCVLRSS: hash_infos: [('0x4ecc5ec3', '0x3')]
20/10/2020 14:41:23                     TestCVLRSS: action: ipv4-gtpu-eh-pay

20/10/2020 14:41:23                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:24              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=A4:BF:01:68:DE:A2 - dst=00:11:22:33:44:55 - type=0x0800 - length=158 - nb_segs=1 - RSS hash=0x4e32c70c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 1193046 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:41:24                     TestCVLRSS: action: check_hash_different

20/10/2020 14:41:24                     TestCVLRSS: hash_infos: [('0x4e32c70c', '0xc')]
20/10/2020 14:41:24                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:25              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:41:25                     TestCVLRSS: action: ipv6-gtpc-EchoRequest

20/10/2020 14:41:25                     TestCVLRSS: action: save_hash

20/10/2020 14:41:25                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8')]
20/10/2020 14:41:25                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:26              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=74 - nb_segs=1 - RSS hash=0x883bc2c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPC  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =28897, Destination UDP port =2123, VNI = 1193046 - 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 

20/10/2020 14:41:26                     TestCVLRSS: action: check_hash_different

20/10/2020 14:41:26                     TestCVLRSS: hash_infos: [('0x883bc2c5', '0x5')]
20/10/2020 14:41:26                     TestCVLRSS: ------------handle post-test--------------
20/10/2020 14:41:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:41:28              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:41:28              dut.10.240.183.67: flow list 0
20/10/2020 14:41:28              dut.10.240.183.67: 
20/10/2020 14:41:28                     TestCVLRSS: ----------send packet-------------
20/10/2020 14:41:29              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=166 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=178 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=70 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 1193046 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=170 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=182 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x8100 - length=74 - nb_segs=1 - RSS hash=0x4ccebcf8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU  - sw ptype: L2_ETHER_VLAN L3_IPV6 L4_UDP  - l2_len=18 - l3_len=40 - l4_len=8 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:41:29                     TestCVLRSS: action: check_hash_different

20/10/2020 14:41:29                     TestCVLRSS: hash_infos: [('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8'), ('0x4ccebcf8', '0x8')]
20/10/2020 14:41:29                     TestCVLRSS: sub_case mac_ipv6_gtpu_symmetric passed
20/10/2020 14:41:29              dut.10.240.183.67: flow flush 0
20/10/2020 14:41:29              dut.10.240.183.67: 
20/10/2020 14:41:29                     TestCVLRSS: {'mac_ipv6_gtpu_symmetric': 'passed'}
20/10/2020 14:41:29                     TestCVLRSS: pass rate is: 100.0
20/10/2020 14:41:29                     TestCVLRSS: Test Case test_mac_ipv6_gtpu_symmetric Result PASSED:
20/10/2020 14:41:29              dut.10.240.183.67: flow flush 0
20/10/2020 14:41:30              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:41:30              dut.10.240.183.67: clear port stats all
20/10/2020 14:41:31              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:41:31              dut.10.240.183.67: stop
20/10/2020 14:41:31              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

Done.
20/10/2020 14:41:31                            dts: 
TEST SUITE ENDED: TestCVLRSS

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

20/10/2020 14:48:08                            dts: 
TEST SUITE : TestCVLIAVFRSSGTPU
20/10/2020 14:48:08                            dts: NIC :        columbiaville_25g
20/10/2020 14:48:08              dut.10.240.183.67: 
20/10/2020 14:48:08                         tester: 
20/10/2020 14:48:13              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 14:48:13              dut.10.240.183.67: 0x8086
20/10/2020 14:48:13              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 14:48:13              dut.10.240.183.67: 0x1889
20/10/2020 14:48:13              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 14:48:13              dut.10.240.183.67: 0x8086
20/10/2020 14:48:13              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 14:48:13              dut.10.240.183.67: 0x1889
20/10/2020 14:48:13              dut.10.240.183.67: ip link set enp24s0f0 vf 0 mac 00:11:22:33:44:55
20/10/2020 14:48:13              dut.10.240.183.67: 
20/10/2020 14:48:14              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_323427_20201020144738    -- -i --rxq=16 --txq=16
20/10/2020 14:50:15             TestCVLIAVFRSSGTPU: set_up_all failed:
Traceback (most recent call last):
  File "/home/huangzhimin/dts_rss/framework/test_case.py", line 258, in execute_setup_all
    self.set_up_all()
  File "tests/TestSuite_cvl_iavf_rss_gtpu.py", line 3239, in set_up_all
    self.launch_testpmd()
  File "tests/TestSuite_cvl_iavf_rss_gtpu.py", line 3264, in launch_testpmd
    eal_param=f"-w {self.vf0_pci}", socket=self.ports_socket)
  File "/home/huangzhimin/dts_rss/framework/pmd_output.py", line 185, in start_testpmd
    out = self.session.send_expect(command, "testpmd> ", 120)
  File "/home/huangzhimin/dts_rss/framework/crb.py", line 93, in send_expect
    return self.session.send_expect(cmds, expected, timeout, verify)
  File "/home/huangzhimin/dts_rss/framework/ssh_connection.py", line 64, in send_expect
    out = self.session.send_expect(cmds, expected, timeout, verify)
  File "/home/huangzhimin/dts_rss/framework/ssh_pexpect.py", line 103, in send_expect
    raise(e)
  File "/home/huangzhimin/dts_rss/framework/ssh_pexpect.py", line 90, in send_expect
    ret = self.send_expect_base(command, expected, timeout)
  File "/home/huangzhimin/dts_rss/framework/ssh_pexpect.py", line 81, in send_expect_base
    self.__prompt(command, timeout)
  File "/home/huangzhimin/dts_rss/framework/ssh_pexpect.py", line 149, in __prompt
    raise TimeoutException(command, self.get_output_all()) from None
exception.TimeoutException: TIMEOUT on x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_323427_20201020144738    -- -i --rxq=16 --txq=16

20/10/2020 14:50:15                            dts: 
TEST SUITE ENDED: TestCVLIAVFRSSGTPU
20/10/2020 14:53:45                            dts: 
TEST SUITE : TestCVLIAVFRSSGTPU
20/10/2020 14:53:45                            dts: NIC :        columbiaville_25g
20/10/2020 14:53:45              dut.10.240.183.67: 
20/10/2020 14:53:45                         tester: 
20/10/2020 14:53:50              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 14:53:50              dut.10.240.183.67: 0x8086
20/10/2020 14:53:50              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 14:53:50              dut.10.240.183.67: 0x1889
20/10/2020 14:53:50              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 14:53:50              dut.10.240.183.67: 0x8086
20/10/2020 14:53:50              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 14:53:50              dut.10.240.183.67: 0x1889
20/10/2020 14:53:50              dut.10.240.183.67: ip link set enp24s0f0 vf 0 mac 00:11:22:33:44:55
20/10/2020 14:53:50              dut.10.240.183.67: 
20/10/2020 14:53:52              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_323797_20201020145316    -- -i --rxq=16 --txq=16
20/10/2020 14:53:53              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_323797_20201020145316/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 14:54:03              dut.10.240.183.67: set fwd rxonly
20/10/2020 14:54:03              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 14:54:03              dut.10.240.183.67: set verbose 1
20/10/2020 14:54:03              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 14:54:03              dut.10.240.183.67: show port info all
20/10/2020 14:54:03              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 14:54:03             TestCVLIAVFRSSGTPU: rssprocess.tester_ifaces: ['enp24s0f0', 'enp24s0f1']
20/10/2020 14:54:03             TestCVLIAVFRSSGTPU: rssprocess.test_case: <TestSuite_cvl_iavf_rss_gtpu.TestCVLIAVFRSSGTPU object at 0x7f6295a662e8>
20/10/2020 14:54:03             TestCVLIAVFRSSGTPU: Test Case test_inner_l4_protocal_hash Begin
20/10/2020 14:54:03              dut.10.240.183.67: 
20/10/2020 14:54:03                         tester: 
20/10/2020 14:54:03              dut.10.240.183.67: start
20/10/2020 14:54:04              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:54:04              dut.10.240.183.67: quit
20/10/2020 14:54:05              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 14:54:05              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_323797_20201020145316    -- -i --rxq=16 --txq=16
20/10/2020 14:54:06              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_323797_20201020145316/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 14:54:16              dut.10.240.183.67: set fwd rxonly
20/10/2020 14:54:16              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 14:54:16              dut.10.240.183.67: set verbose 1
20/10/2020 14:54:16              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 14:54:16              dut.10.240.183.67: show port info all
20/10/2020 14:54:16              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 14:54:16              dut.10.240.183.67: start
20/10/2020 14:54:16              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:54:16             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_tcp================
20/10/2020 14:54:16             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 14:54:16              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 14:54:16              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:54:16              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 14:54:17              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:54:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 14:54:17              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:54:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 14:54:17              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 14:54:17              dut.10.240.183.67: flow list 0
20/10/2020 14:54:17              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 UDP => RSS
1	0	0	i--	ETH IPV4 UDP GTPU IPV4 TCP => RSS
20/10/2020 14:54:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:18              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:18             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 14:54:18             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 14:54:18             TestCVLIAVFRSSGTPU: the packet do not distribute by rss
20/10/2020 14:54:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:19              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:19             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 14:54:19             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 14:54:19             TestCVLIAVFRSSGTPU: hash value [] should be different with current saved hash []
20/10/2020 14:54:19             TestCVLIAVFRSSGTPU: the packet do not distribute by rss
20/10/2020 14:54:19             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 14:54:19              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:54:20              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:54:20              dut.10.240.183.67: flow destroy 0 rule 1
20/10/2020 14:54:21              dut.10.240.183.67: 
Flow rule #1 destroyed
testpmd> 
20/10/2020 14:54:21              dut.10.240.183.67: flow list 0
20/10/2020 14:54:21              dut.10.240.183.67: 
20/10/2020 14:54:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:22              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:22             TestCVLIAVFRSSGTPU: action: save_or_no_hash

20/10/2020 14:54:22             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 14:54:22             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 14:54:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:24              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:24             TestCVLIAVFRSSGTPU: action: check_hash_same_or_no_hash

20/10/2020 14:54:24             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_udp_tcp failed: "['the packet do not distribute by rss', 'hash value [] should be different with current saved hash []', 'the packet do not distribute by rss']"
20/10/2020 14:54:24              dut.10.240.183.67: flow flush 0
20/10/2020 14:54:24              dut.10.240.183.67: 
20/10/2020 14:54:24             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_udp_tcp================
20/10/2020 14:54:24             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 14:54:24              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 14:54:24              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:54:24              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 14:54:24              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:54:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 14:54:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:54:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 14:54:24              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 14:54:24              dut.10.240.183.67: flow list 0
20/10/2020 14:54:24              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 UDP => RSS
1	0	0	i--	ETH IPV6 UDP GTPU IPV4 TCP => RSS
20/10/2020 14:54:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:25              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfd1f7067 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:25             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 14:54:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xfd1f7067', '0x7')]
20/10/2020 14:54:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:26              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xfd1f7067 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 14:54:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xfd1f7067', '0x7')]
20/10/2020 14:54:26             TestCVLIAVFRSSGTPU: hash value ['0xfd1f7067'] should be different with current saved hash ['0xfd1f7067']
20/10/2020 14:54:26             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 14:54:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:54:27              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:54:27              dut.10.240.183.67: flow destroy 0 rule 1
20/10/2020 14:54:28              dut.10.240.183.67: 
Flow rule #1 destroyed
testpmd> 
20/10/2020 14:54:28              dut.10.240.183.67: flow list 0
20/10/2020 14:54:29              dut.10.240.183.67: 
20/10/2020 14:54:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:30              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xeab7f20a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:30             TestCVLIAVFRSSGTPU: action: save_or_no_hash

20/10/2020 14:54:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xeab7f20a', '0xa')]
20/10/2020 14:54:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:31              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xeab7f20a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:31             TestCVLIAVFRSSGTPU: action: check_hash_same_or_no_hash

20/10/2020 14:54:31             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_udp_tcp failed: '["hash value [\'0xfd1f7067\'] should be different with current saved hash [\'0xfd1f7067\']"]'
20/10/2020 14:54:31              dut.10.240.183.67: flow flush 0
20/10/2020 14:54:31              dut.10.240.183.67: 
20/10/2020 14:54:31             TestCVLIAVFRSSGTPU: ===================Test sub case: inner_l4_mac_ipv4_gtpu_eh_ipv6_udp_tcp================
20/10/2020 14:54:31             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 14:54:31              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 14:54:31              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:54:31              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 14:54:31              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:54:31              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 14:54:31              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:54:31              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 14:54:31              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 14:54:31              dut.10.240.183.67: flow list 0
20/10/2020 14:54:31              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
1	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 14:54:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:32             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 14:54:32             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 14:54:32             TestCVLIAVFRSSGTPU: the packet do not distribute by rss
20/10/2020 14:54:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:33              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 14:54:33             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 14:54:33             TestCVLIAVFRSSGTPU: hash value [] should be different with current saved hash []
20/10/2020 14:54:33             TestCVLIAVFRSSGTPU: the packet do not distribute by rss
20/10/2020 14:54:33             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 14:54:33              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:54:35              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:54:35              dut.10.240.183.67: flow destroy 0 rule 1
20/10/2020 14:54:36              dut.10.240.183.67: 
Flow rule #1 destroyed
testpmd> 
20/10/2020 14:54:36              dut.10.240.183.67: flow list 0
20/10/2020 14:54:36              dut.10.240.183.67: 
20/10/2020 14:54:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:37             TestCVLIAVFRSSGTPU: action: save_or_no_hash

20/10/2020 14:54:37             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 14:54:37             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 14:54:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:38              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:38             TestCVLIAVFRSSGTPU: action: check_hash_same_or_no_hash

20/10/2020 14:54:38             TestCVLIAVFRSSGTPU: sub_case inner_l4_mac_ipv4_gtpu_eh_ipv6_udp_tcp failed: "['the packet do not distribute by rss', 'hash value [] should be different with current saved hash []', 'the packet do not distribute by rss']"
20/10/2020 14:54:38              dut.10.240.183.67: flow flush 0
20/10/2020 14:54:38              dut.10.240.183.67: 
20/10/2020 14:54:38             TestCVLIAVFRSSGTPU: ===================Test sub case: inner_l4_mac_ipv6_gtpu_eh_ipv6_udp_tcp================
20/10/2020 14:54:38             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 14:54:38              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 14:54:38              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:54:38              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 14:54:38              dut.10.240.183.67: 
Flow rule validated
20/10/2020 14:54:38              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 14:54:38              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:54:38              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 14:54:38              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 14:54:38              dut.10.240.183.67: flow list 0
20/10/2020 14:54:38              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
1	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 14:54:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:40              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdfda5272 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 14:54:40             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 14:54:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xdfda5272', '0x2')]
20/10/2020 14:54:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:41              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xdfda5272 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 14:54:41             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 14:54:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xdfda5272', '0x2')]
20/10/2020 14:54:41             TestCVLIAVFRSSGTPU: hash value ['0xdfda5272'] should be different with current saved hash ['0xdfda5272']
20/10/2020 14:54:41             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 14:54:41              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 14:54:42              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 14:54:42              dut.10.240.183.67: flow destroy 0 rule 1
20/10/2020 14:54:43              dut.10.240.183.67: 
Flow rule #1 destroyed
testpmd> 
20/10/2020 14:54:43              dut.10.240.183.67: flow list 0
20/10/2020 14:54:43              dut.10.240.183.67: 
20/10/2020 14:54:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:44              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xeab7f20a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:44             TestCVLIAVFRSSGTPU: action: save_or_no_hash

20/10/2020 14:54:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xeab7f20a', '0xa')]
20/10/2020 14:54:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:54:45              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xeab7f20a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:54:45             TestCVLIAVFRSSGTPU: action: check_hash_same_or_no_hash

20/10/2020 14:54:45             TestCVLIAVFRSSGTPU: sub_case inner_l4_mac_ipv6_gtpu_eh_ipv6_udp_tcp failed: '["hash value [\'0xdfda5272\'] should be different with current saved hash [\'0xdfda5272\']"]'
20/10/2020 14:54:45              dut.10.240.183.67: flow flush 0
20/10/2020 14:54:45              dut.10.240.183.67: 
20/10/2020 14:54:45             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv4_udp_tcp': 'failed', 'mac_ipv6_gtpu_ipv4_udp_tcp': 'failed', 'inner_l4_mac_ipv4_gtpu_eh_ipv6_udp_tcp': 'failed', 'inner_l4_mac_ipv6_gtpu_eh_ipv6_udp_tcp': 'failed'}
20/10/2020 14:54:45             TestCVLIAVFRSSGTPU: pass rate is: 0.0
20/10/2020 14:54:45             TestCVLIAVFRSSGTPU: Test Case test_inner_l4_protocal_hash Result FAILED: 'some subcases failed'
20/10/2020 14:54:45              dut.10.240.183.67: flow flush 0
20/10/2020 14:54:46              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:54:46              dut.10.240.183.67: clear port stats all
20/10/2020 14:54:48              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:54:48              dut.10.240.183.67: stop
20/10/2020 14:54:48              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

Done.
20/10/2020 14:54:48             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_eh_ipv4_and_ipv4_gtpu_eh_ipv4_udp Begin
20/10/2020 14:54:48              dut.10.240.183.67: 
20/10/2020 14:54:48                         tester: 
20/10/2020 14:54:48              dut.10.240.183.67: start
20/10/2020 14:54:48              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:54:48              dut.10.240.183.67: quit
20/10/2020 14:54:50              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 14:54:50              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_323797_20201020145316    -- -i --rxq=16 --txq=16
20/10/2020 14:54:51              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_323797_20201020145316/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 14:55:01              dut.10.240.183.67: set fwd rxonly
20/10/2020 14:55:01              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 14:55:01              dut.10.240.183.67: set verbose 1
20/10/2020 14:55:01              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 14:55:01              dut.10.240.183.67: show port info all
20/10/2020 14:55:01              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 14:55:01              dut.10.240.183.67: start
20/10/2020 14:55:01              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:55:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 14:55:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 14:55:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:55:02              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xfbb7df4c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xad256a77 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xfbb7df4c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:55:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbb7df4c', '0xc'), ('0xad256a77', '0x7'), ('0xfbb7df4c', '0xc')]
20/10/2020 14:55:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 14:55:02              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 14:55:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:55:04              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x4b8d7bbf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xbe5a34be - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x4b8d7bbf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:55:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b8d7bbf', '0xf'), ('0xbe5a34be', '0xe'), ('0x4b8d7bbf', '0xf')]
20/10/2020 14:55:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 14:55:05              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x4b8d7bbf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x4b8d7bbf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xbe5a34be - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 14:55:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b8d7bbf', '0xf'), ('0x4b8d7bbf', '0xf'), ('0xbe5a34be', '0xe')]
20/10/2020 14:55:05             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_eh_ipv4_and_ipv4_gtpu_eh_ipv4_udp Result FAILED: 'got wrong hash, expect 1st hash equal to 3nd and different with 2rd'
20/10/2020 14:55:05              dut.10.240.183.67: flow flush 0
20/10/2020 14:55:06              dut.10.240.183.67: 
testpmd> 
20/10/2020 14:55:06              dut.10.240.183.67: clear port stats all
20/10/2020 14:55:07              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 14:55:07              dut.10.240.183.67: stop
20/10/2020 14:55:07              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

Done.
20/10/2020 14:55:07             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_eh_ipv4_with_without_ul_dl Begin
20/10/2020 14:55:07              dut.10.240.183.67: 
20/10/2020 14:55:07                         tester: 
20/10/2020 14:55:07              dut.10.240.183.67: start
20/10/2020 14:55:07              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 14:55:07              dut.10.240.183.67: quit
20/10/2020 14:55:07             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_eh_ipv4_with_without_ul_dl SKIPPED: 
20/10/2020 14:55:07              dut.10.240.183.67: flow flush 0
20/10/2020 14:55:08              dut.10.240.183.67: flow flush 0
20/10/2020 14:55:08                            dts:  !!! STOPPING DTS
20/10/2020 14:55:08              dut.10.240.183.67: quit
20/10/2020 14:55:10                            dts: DTS ended
20/10/2020 15:06:50                            dts: 
TEST SUITE : TestCVLIAVFRSSGTPU
20/10/2020 15:06:50                            dts: NIC :        columbiaville_25g
20/10/2020 15:06:50              dut.10.240.183.67: 
20/10/2020 15:06:50                         tester: 
20/10/2020 15:06:54              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 15:06:54              dut.10.240.183.67: 0x8086
20/10/2020 15:06:54              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 15:06:54              dut.10.240.183.67: 0x1889
20/10/2020 15:06:54              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 15:06:54              dut.10.240.183.67: 0x8086
20/10/2020 15:06:54              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 15:06:55              dut.10.240.183.67: 0x1889
20/10/2020 15:06:55              dut.10.240.183.67: ip link set enp24s0f0 vf 0 mac 00:11:22:33:44:55
20/10/2020 15:06:55              dut.10.240.183.67: 
20/10/2020 15:06:56              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324377_20201020150620    -- -i --rxq=16 --txq=16
20/10/2020 15:06:58              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324377_20201020150620/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:07:08              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:07:08              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:07:08              dut.10.240.183.67: set verbose 1
20/10/2020 15:07:08              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:07:08              dut.10.240.183.67: show port info all
20/10/2020 15:07:08              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:07:08             TestCVLIAVFRSSGTPU: rssprocess.tester_ifaces: ['enp24s0f0', 'enp24s0f1']
20/10/2020 15:07:08             TestCVLIAVFRSSGTPU: rssprocess.test_case: <TestSuite_cvl_iavf_rss_gtpu.TestCVLIAVFRSSGTPU object at 0x7f0899c0c748>
20/10/2020 15:07:08             TestCVLIAVFRSSGTPU: Test Case test_inner_l4_protocal_hash Begin
20/10/2020 15:07:08              dut.10.240.183.67: 
20/10/2020 15:07:08                         tester: 
20/10/2020 15:07:08              dut.10.240.183.67: start
20/10/2020 15:07:08              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:07:08              dut.10.240.183.67: quit
20/10/2020 15:07:10              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:07:10              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324377_20201020150620    -- -i --rxq=16 --txq=16
20/10/2020 15:07:11              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324377_20201020150620/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:07:21              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:07:21              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:07:21              dut.10.240.183.67: set verbose 1
20/10/2020 15:07:21              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:07:21              dut.10.240.183.67: show port info all
20/10/2020 15:07:21              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:07:21              dut.10.240.183.67: start
20/10/2020 15:07:21              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:07:21             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_tcp================
20/10/2020 15:07:21             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:07:21              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:07:21              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:07:21              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:07:21              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:07:21              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:07:21              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:07:21              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:07:22              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 15:07:22              dut.10.240.183.67: flow list 0
20/10/2020 15:07:22              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 UDP => RSS
1	0	0	i--	ETH IPV4 UDP GTPU IPV4 TCP => RSS
20/10/2020 15:07:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:07:23              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:07:23             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:07:23             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:07:23             TestCVLIAVFRSSGTPU: the packet do not distribute by rss
20/10/2020 15:07:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:07:24              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:07:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:07:24             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:07:24             TestCVLIAVFRSSGTPU: hash value [] should be different with current saved hash []
20/10/2020 15:07:24             TestCVLIAVFRSSGTPU: the packet do not distribute by rss
20/10/2020 15:07:24             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:07:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:07:25              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:07:25              dut.10.240.183.67: flow destroy 0 rule 1
20/10/2020 15:07:25              dut.10.240.183.67: flow flush 0
20/10/2020 15:07:25              dut.10.240.183.67: 
20/10/2020 15:07:25             TestCVLIAVFRSSGTPU: Test Case test_inner_l4_protocal_hash SKIPPED: 
20/10/2020 15:07:25              dut.10.240.183.67: flow flush 0
20/10/2020 15:07:26              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:07:26              dut.10.240.183.67: clear port stats all
20/10/2020 15:07:27              dut.10.240.183.67: flow flush 0
20/10/2020 15:07:28                            dts:  !!! STOPPING DTS
20/10/2020 15:07:28              dut.10.240.183.67: quit
20/10/2020 15:07:29              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:07:34              dut.10.240.183.67: kill_all: called by dut and prefix list has value.
20/10/2020 15:07:35              dut.10.240.183.67: kill_all: called by dut and has no prefix list.
20/10/2020 15:07:36              dut.10.240.183.67: echo 0000:18:00.0 > /sys/bus/pci/devices/0000\:18\:00.0/driver/unbind
20/10/2020 15:07:37              dut.10.240.183.67: 
20/10/2020 15:07:37              dut.10.240.183.67: modprobe ice
20/10/2020 15:07:37              dut.10.240.183.67: 
20/10/2020 15:07:37              dut.10.240.183.67: echo 0000:18:00.0 > /sys/bus/pci/drivers/ice/bind
20/10/2020 15:07:38              dut.10.240.183.67: 
20/10/2020 15:07:38              dut.10.240.183.67: ifconfig enp24s0f0 up
20/10/2020 15:07:39              dut.10.240.183.67: 
20/10/2020 15:07:39              dut.10.240.183.67: echo 0000:18:00.1 > /sys/bus/pci/devices/0000\:18\:00.1/driver/unbind
20/10/2020 15:07:39              dut.10.240.183.67: 
20/10/2020 15:07:39              dut.10.240.183.67: modprobe ice
20/10/2020 15:07:39              dut.10.240.183.67: 
20/10/2020 15:07:39              dut.10.240.183.67: echo 0000:18:00.1 > /sys/bus/pci/drivers/ice/bind
20/10/2020 15:07:39              dut.10.240.183.67: 
20/10/2020 15:07:39              dut.10.240.183.67: ifconfig enp24s0f1 up
20/10/2020 15:07:40              dut.10.240.183.67: 
20/10/2020 15:07:40              dut.10.240.183.67: echo 0000:18:00.2 > /sys/bus/pci/devices/0000\:18\:00.2/driver/unbind
20/10/2020 15:07:40              dut.10.240.183.67: 
20/10/2020 15:07:40              dut.10.240.183.67: modprobe ice
20/10/2020 15:07:40              dut.10.240.183.67: 
20/10/2020 15:07:40              dut.10.240.183.67: echo 0000:18:00.2 > /sys/bus/pci/drivers/ice/bind
20/10/2020 15:07:40              dut.10.240.183.67: 
20/10/2020 15:07:41              dut.10.240.183.67: ifconfig enp24s0f2 up
20/10/2020 15:07:41              dut.10.240.183.67: 
20/10/2020 15:07:41              dut.10.240.183.67: echo 0000:18:00.3 > /sys/bus/pci/devices/0000\:18\:00.3/driver/unbind
20/10/2020 15:07:41              dut.10.240.183.67: 
20/10/2020 15:07:41              dut.10.240.183.67: modprobe ice
20/10/2020 15:07:41              dut.10.240.183.67: 
20/10/2020 15:07:41              dut.10.240.183.67: echo 0000:18:00.3 > /sys/bus/pci/drivers/ice/bind
20/10/2020 15:07:42              dut.10.240.183.67: 
20/10/2020 15:07:42              dut.10.240.183.67: ifconfig enp24s0f3 up
20/10/2020 15:07:42              dut.10.240.183.67: 
20/10/2020 15:07:45                            dts: DTS ended
20/10/2020 15:11:00                            dts: 
TEST SUITE : TestCVLIAVFRSSGTPU
20/10/2020 15:11:00                            dts: NIC :        columbiaville_25g
20/10/2020 15:11:00              dut.10.240.183.67: 
20/10/2020 15:11:00                         tester: 
20/10/2020 15:11:05              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 15:11:05              dut.10.240.183.67: 0x8086
20/10/2020 15:11:05              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 15:11:05              dut.10.240.183.67: 0x1889
20/10/2020 15:11:05              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/vendor
20/10/2020 15:11:05              dut.10.240.183.67: 0x8086
20/10/2020 15:11:05              dut.10.240.183.67: cat /sys/bus/pci/devices/0000\:18\:01.0/device
20/10/2020 15:11:05              dut.10.240.183.67: 0x1889
20/10/2020 15:11:05              dut.10.240.183.67: ip link set enp24s0f0 vf 0 mac 00:11:22:33:44:55
20/10/2020 15:11:05              dut.10.240.183.67: 
20/10/2020 15:11:07              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:11:08              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:11:18              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:11:18              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:11:18              dut.10.240.183.67: set verbose 1
20/10/2020 15:11:18              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:11:18              dut.10.240.183.67: show port info all
20/10/2020 15:11:18              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:11:18             TestCVLIAVFRSSGTPU: rssprocess.tester_ifaces: ['enp24s0f0', 'enp24s0f1']
20/10/2020 15:11:18             TestCVLIAVFRSSGTPU: rssprocess.test_case: <TestSuite_cvl_iavf_rss_gtpu.TestCVLIAVFRSSGTPU object at 0x7f0ea09d52e8>
20/10/2020 15:11:18             TestCVLIAVFRSSGTPU: Test Case test_inner_l4_protocal_hash Begin
20/10/2020 15:11:18              dut.10.240.183.67: 
20/10/2020 15:11:18                         tester: 
20/10/2020 15:11:18              dut.10.240.183.67: start
20/10/2020 15:11:19              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:11:19              dut.10.240.183.67: quit
20/10/2020 15:11:20              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:11:20              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:11:21              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:11:31              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:11:31              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:11:31              dut.10.240.183.67: set verbose 1
20/10/2020 15:11:31              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:11:31              dut.10.240.183.67: show port info all
20/10/2020 15:11:31              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:11:31              dut.10.240.183.67: start
20/10/2020 15:11:31              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:11:31             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_tcp================
20/10/2020 15:11:31             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:11:31              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:11:31              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:11:31              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:11:31              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:11:31              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:11:31              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:11:31              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:11:32              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 15:11:32              dut.10.240.183.67: flow list 0
20/10/2020 15:11:32              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 UDP => RSS
1	0	0	i--	ETH IPV4 UDP GTPU IPV4 TCP => RSS
20/10/2020 15:11:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:33              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x320e8a6f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:11:33             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:11:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x320e8a6f', '0xf')]
20/10/2020 15:11:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:34              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x6881f16f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:11:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:11:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x6881f16f', '0xf')]
20/10/2020 15:11:34             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:11:34              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:11:35              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:11:35              dut.10.240.183.67: flow destroy 0 rule 1
20/10/2020 15:11:36              dut.10.240.183.67: 
Flow rule #1 destroyed
testpmd> 
20/10/2020 15:11:36              dut.10.240.183.67: flow list 0
20/10/2020 15:11:36              dut.10.240.183.67: 
20/10/2020 15:11:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:11:37             TestCVLIAVFRSSGTPU: action: save_or_no_hash

20/10/2020 15:11:37             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:11:37             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:11:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:38              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:11:38             TestCVLIAVFRSSGTPU: action: check_hash_same_or_no_hash

20/10/2020 15:11:38             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_udp_tcp passed
20/10/2020 15:11:38              dut.10.240.183.67: flow flush 0
20/10/2020 15:11:39              dut.10.240.183.67: 
20/10/2020 15:11:39             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_udp_tcp================
20/10/2020 15:11:39             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:11:39              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:11:39              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:11:39              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:11:39              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:11:39              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:11:39              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:11:39              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:11:39              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 15:11:39              dut.10.240.183.67: flow list 0
20/10/2020 15:11:39              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 UDP => RSS
1	0	0	i--	ETH IPV6 UDP GTPU IPV4 TCP => RSS
20/10/2020 15:11:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:40              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x320e8a6f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:11:40             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:11:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x320e8a6f', '0xf')]
20/10/2020 15:11:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:41              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x6881f16f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:11:41             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:11:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x6881f16f', '0xf')]
20/10/2020 15:11:41             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:11:41              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:11:42              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:11:42              dut.10.240.183.67: flow destroy 0 rule 1
20/10/2020 15:11:43              dut.10.240.183.67: 
Flow rule #1 destroyed
testpmd> 
20/10/2020 15:11:43              dut.10.240.183.67: flow list 0
20/10/2020 15:11:43              dut.10.240.183.67: 
20/10/2020 15:11:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:45              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc2d0f933 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:11:45             TestCVLIAVFRSSGTPU: action: save_or_no_hash

20/10/2020 15:11:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2d0f933', '0x3')]
20/10/2020 15:11:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:46              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xc2d0f933 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:11:46             TestCVLIAVFRSSGTPU: action: check_hash_same_or_no_hash

20/10/2020 15:11:46             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_udp_tcp passed
20/10/2020 15:11:46              dut.10.240.183.67: flow flush 0
20/10/2020 15:11:46              dut.10.240.183.67: 
20/10/2020 15:11:46             TestCVLIAVFRSSGTPU: ===================Test sub case: inner_l4_mac_ipv4_gtpu_eh_ipv6_udp_tcp================
20/10/2020 15:11:46             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:11:46              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:11:46              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:11:46              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:11:46              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:11:46              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:11:46              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:11:46              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:11:46              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 15:11:46              dut.10.240.183.67: flow list 0
20/10/2020 15:11:46              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
1	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:11:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:47              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x80abe0ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:11:47             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:11:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x80abe0ab', '0xb')]
20/10/2020 15:11:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:48              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xdbf16fd0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:11:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:11:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xdbf16fd0', '0x0')]
20/10/2020 15:11:48             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:11:48              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:11:49              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:11:49              dut.10.240.183.67: flow destroy 0 rule 1
20/10/2020 15:11:51              dut.10.240.183.67: 
Flow rule #1 destroyed
testpmd> 
20/10/2020 15:11:51              dut.10.240.183.67: flow list 0
20/10/2020 15:11:51              dut.10.240.183.67: 
20/10/2020 15:11:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:52              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:11:52             TestCVLIAVFRSSGTPU: action: save_or_no_hash

20/10/2020 15:11:52             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:11:52             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:11:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:53              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:11:53             TestCVLIAVFRSSGTPU: action: check_hash_same_or_no_hash

20/10/2020 15:11:53             TestCVLIAVFRSSGTPU: sub_case inner_l4_mac_ipv4_gtpu_eh_ipv6_udp_tcp passed
20/10/2020 15:11:53              dut.10.240.183.67: flow flush 0
20/10/2020 15:11:53              dut.10.240.183.67: 
20/10/2020 15:11:53             TestCVLIAVFRSSGTPU: ===================Test sub case: inner_l4_mac_ipv6_gtpu_eh_ipv6_udp_tcp================
20/10/2020 15:11:53             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:11:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:11:53              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:11:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:11:53              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:11:53              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:11:53              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:11:53              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:11:53              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 15:11:53              dut.10.240.183.67: flow list 0
20/10/2020 15:11:53              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
1	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:11:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:54              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x80abe0ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:11:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:11:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x80abe0ab', '0xb')]
20/10/2020 15:11:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:56              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xdbf16fd0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:11:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:11:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xdbf16fd0', '0x0')]
20/10/2020 15:11:56             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:11:56              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:11:57              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:11:57              dut.10.240.183.67: flow destroy 0 rule 1
20/10/2020 15:11:58              dut.10.240.183.67: 
Flow rule #1 destroyed
testpmd> 
20/10/2020 15:11:58              dut.10.240.183.67: flow list 0
20/10/2020 15:11:58              dut.10.240.183.67: 
20/10/2020 15:11:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:11:59              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc2d0f933 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:11:59             TestCVLIAVFRSSGTPU: action: save_or_no_hash

20/10/2020 15:11:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2d0f933', '0x3')]
20/10/2020 15:11:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:12:00              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xc2d0f933 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:12:00             TestCVLIAVFRSSGTPU: action: check_hash_same_or_no_hash

20/10/2020 15:12:00             TestCVLIAVFRSSGTPU: sub_case inner_l4_mac_ipv6_gtpu_eh_ipv6_udp_tcp passed
20/10/2020 15:12:00              dut.10.240.183.67: flow flush 0
20/10/2020 15:12:00              dut.10.240.183.67: 
20/10/2020 15:12:00             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv4_udp_tcp': 'passed', 'mac_ipv6_gtpu_ipv4_udp_tcp': 'passed', 'inner_l4_mac_ipv4_gtpu_eh_ipv6_udp_tcp': 'passed', 'inner_l4_mac_ipv6_gtpu_eh_ipv6_udp_tcp': 'passed'}
20/10/2020 15:12:00             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:12:00             TestCVLIAVFRSSGTPU: Test Case test_inner_l4_protocal_hash Result PASSED:
20/10/2020 15:12:00              dut.10.240.183.67: flow flush 0
20/10/2020 15:12:01              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:12:01              dut.10.240.183.67: clear port stats all
20/10/2020 15:12:03              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:12:03              dut.10.240.183.67: stop
20/10/2020 15:12:03              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

Done.
20/10/2020 15:12:03             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_eh_ipv4_and_ipv4_gtpu_eh_ipv4_udp Begin
20/10/2020 15:12:03              dut.10.240.183.67: 
20/10/2020 15:12:03                         tester: 
20/10/2020 15:12:03              dut.10.240.183.67: start
20/10/2020 15:12:03              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:12:03              dut.10.240.183.67: quit
20/10/2020 15:12:04              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:12:04              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:12:06              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:12:16              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:12:16              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:12:16              dut.10.240.183.67: set verbose 1
20/10/2020 15:12:16              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:12:16              dut.10.240.183.67: show port info all
20/10/2020 15:12:16              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:12:16              dut.10.240.183.67: start
20/10/2020 15:12:16              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:12:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:12:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:12:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:12:17              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x7c027a3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x4764d376 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x7c027a3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:12:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x7c027a3f', '0xf'), ('0x4764d376', '0x6'), ('0x7c027a3f', '0xf')]
20/10/2020 15:12:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:12:17              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 15:12:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:12:18              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x419c4898 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x436209b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x419c4898 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:12:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x419c4898', '0x8'), ('0x436209b', '0xb'), ('0x419c4898', '0x8')]
20/10/2020 15:12:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:12:19              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x419c4898 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x419c4898 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x436209b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:12:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x419c4898', '0x8'), ('0x419c4898', '0x8'), ('0x436209b', '0xb')]
20/10/2020 15:12:19             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_eh_ipv4_and_ipv4_gtpu_eh_ipv4_udp Result FAILED: 'got wrong hash, expect 1st hash equal to 3nd and different with 2rd'
20/10/2020 15:12:19              dut.10.240.183.67: flow flush 0
20/10/2020 15:12:21              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:12:21              dut.10.240.183.67: clear port stats all
20/10/2020 15:12:22              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:12:22              dut.10.240.183.67: stop
20/10/2020 15:12:22              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

Done.
20/10/2020 15:12:22             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_eh_ipv4_with_without_ul_dl Begin
20/10/2020 15:12:22              dut.10.240.183.67: 
20/10/2020 15:12:22                         tester: 
20/10/2020 15:12:22              dut.10.240.183.67: start
20/10/2020 15:12:22              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:12:22              dut.10.240.183.67: quit
20/10/2020 15:12:23              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:12:23              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:12:25              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:12:35              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:12:35              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:12:35              dut.10.240.183.67: set verbose 1
20/10/2020 15:12:35              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:12:35              dut.10.240.183.67: show port info all
20/10/2020 15:12:35              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:12:35              dut.10.240.183.67: start
20/10/2020 15:12:35              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:12:35              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:12:35              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:12:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:12:36              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6d3ec96d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6ddc7abf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6d3ec96d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:12:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d3ec96d', '0xd'), ('0x6ddc7abf', '0xf'), ('0x6d3ec96d', '0xd')]
20/10/2020 15:12:36              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:12:36              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 15:12:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:12:37              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xeb7bf139 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xeb9942eb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xeb7bf139 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:12:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xeb7bf139', '0x9'), ('0xeb9942eb', '0xb'), ('0xeb7bf139', '0x9')]
20/10/2020 15:12:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:12:38              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xeb7bf139 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xeb9942eb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xeb7bf139 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:12:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xeb7bf139', '0x9'), ('0xeb9942eb', '0xb'), ('0xeb7bf139', '0x9')]
20/10/2020 15:12:38              dut.10.240.183.67: flow destroy 0 rule 1
20/10/2020 15:12:40              dut.10.240.183.67: 
Flow rule #1 destroyed
testpmd> 
20/10/2020 15:12:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:12:41              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:12:41             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:12:41             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_eh_ipv4_with_without_ul_dl Result PASSED:
20/10/2020 15:12:41              dut.10.240.183.67: flow flush 0
20/10/2020 15:12:42              dut.10.240.183.67: 
iavf_execute_vf_cmd(): No response or return failure (-5) for cmd 46
iavf_add_del_rss_cfg(): Failed to execute command of OP_DEL_RSS_INPUT_CFG
iavf_hash_destroy(): fail to del RSS configure
iavf_flow_destroy(): Failed to destroy flow
iavf_flow_flush(): Failed to flush flows
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to delete rss rule.: Operation not permitted
testpmd> 
20/10/2020 15:12:42              dut.10.240.183.67: clear port stats all
20/10/2020 15:12:43              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:12:43              dut.10.240.183.67: stop
20/10/2020 15:12:43              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

Done.
20/10/2020 15:12:43             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_eh_ipv4_without_with_ul_dl Begin
20/10/2020 15:12:43              dut.10.240.183.67: 
20/10/2020 15:12:43                         tester: 
20/10/2020 15:12:43              dut.10.240.183.67: start
20/10/2020 15:12:43              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:12:43              dut.10.240.183.67: quit
20/10/2020 15:12:45              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
iavf_execute_vf_cmd(): No response or return failure (-5) for cmd 46
iavf_add_del_rss_cfg(): Failed to execute command of OP_DEL_RSS_INPUT_CFG
iavf_hash_destroy(): fail to del RSS configure
iavf_flow_destroy(): Failed to destroy flow
iavf_flow_flush(): Failed to flush flows
Done

Bye...
20/10/2020 15:12:45              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:12:46              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:12:56              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:12:56              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:12:56              dut.10.240.183.67: set verbose 1
20/10/2020 15:12:56              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:12:56              dut.10.240.183.67: show port info all
20/10/2020 15:12:56              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:12:56              dut.10.240.183.67: start
20/10/2020 15:12:56              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:12:56              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:12:56              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:12:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:12:58              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xfef4d97b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xc7ff9499 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xfef4d97b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:12:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xfef4d97b', '0xb'), ('0xc7ff9499', '0x9'), ('0xfef4d97b', '0xb')]
20/10/2020 15:12:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:12:59              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xfef4d97b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xc7ff9499 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xfef4d97b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:12:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xfef4d97b', '0xb'), ('0xc7ff9499', '0x9'), ('0xfef4d97b', '0xb')]
20/10/2020 15:12:59              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:12:59              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 15:12:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:13:00              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xe5e65ef9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xdced131b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xe5e65ef9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:13:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xe5e65ef9', '0x9'), ('0xdced131b', '0xb'), ('0xe5e65ef9', '0x9')]
20/10/2020 15:13:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:13:01              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xe5e65ef9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xe5e65ef9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xdced131b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:13:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xe5e65ef9', '0x9'), ('0xe5e65ef9', '0x9'), ('0xdced131b', '0xb')]
20/10/2020 15:13:01             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_eh_ipv4_without_with_ul_dl Result FAILED: 'got wrong hash, expect 1st hash equal to 3nd and different with 2rd'
20/10/2020 15:13:01              dut.10.240.183.67: flow flush 0
20/10/2020 15:13:02              dut.10.240.183.67: 
iavf_execute_vf_cmd(): No response or return failure (-5) for cmd 46
iavf_add_del_rss_cfg(): Failed to execute command of OP_DEL_RSS_INPUT_CFG
iavf_hash_destroy(): fail to del RSS configure
iavf_flow_destroy(): Failed to destroy flow
iavf_flow_flush(): Failed to flush flows
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to delete rss rule.: Operation not permitted
testpmd> 
20/10/2020 15:13:02              dut.10.240.183.67: clear port stats all
20/10/2020 15:13:03              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:13:03              dut.10.240.183.67: stop
20/10/2020 15:13:03              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:13:03             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_eh_ipv6_and_ipv4_gtpu_eh_ipv6_udp_without_ul_dl Begin
20/10/2020 15:13:03              dut.10.240.183.67: 
20/10/2020 15:13:04                         tester: 
20/10/2020 15:13:04              dut.10.240.183.67: start
20/10/2020 15:13:04              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:13:04              dut.10.240.183.67: quit
20/10/2020 15:13:05              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
iavf_execute_vf_cmd(): No response or return failure (-5) for cmd 46
iavf_add_del_rss_cfg(): Failed to execute command of OP_DEL_RSS_INPUT_CFG
iavf_hash_destroy(): fail to del RSS configure
iavf_flow_destroy(): Failed to destroy flow
iavf_flow_flush(): Failed to flush flows
Done

Bye...
20/10/2020 15:13:05              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:13:06              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:13:17              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:13:17              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:13:17              dut.10.240.183.67: set verbose 1
20/10/2020 15:13:17              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:13:17              dut.10.240.183.67: show port info all
20/10/2020 15:13:17              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:13:17              dut.10.240.183.67: start
20/10/2020 15:13:17              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:13:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:13:17              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:13:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:13:18              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x74ebadee - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xffd0b06 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x74ebadee - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:13:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x74ebadee', '0xe'), ('0xffd0b06', '0x6'), ('0x74ebadee', '0xe')]
20/10/2020 15:13:18              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:13:18              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 15:13:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:13:19              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x153e8315 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x2b5f70f8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x153e8315 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:13:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x153e8315', '0x5'), ('0x2b5f70f8', '0x8'), ('0x153e8315', '0x5')]
20/10/2020 15:13:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:13:20              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x153e8315 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x153e8315 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2b5f70f8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:13:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x153e8315', '0x5'), ('0x153e8315', '0x5'), ('0x2b5f70f8', '0x8')]
20/10/2020 15:13:20             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_eh_ipv6_and_ipv4_gtpu_eh_ipv6_udp_without_ul_dl Result PASSED:
20/10/2020 15:13:20              dut.10.240.183.67: flow flush 0
20/10/2020 15:13:21              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:13:21              dut.10.240.183.67: clear port stats all
20/10/2020 15:13:23              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:13:23              dut.10.240.183.67: stop
20/10/2020 15:13:23              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

Done.
20/10/2020 15:13:23             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_ipv4_ipv4_gtpu_eh_ipv4 Begin
20/10/2020 15:13:23              dut.10.240.183.67: 
20/10/2020 15:13:23                         tester: 
20/10/2020 15:13:23              dut.10.240.183.67: start
20/10/2020 15:13:23              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:13:23              dut.10.240.183.67: quit
20/10/2020 15:13:24              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:13:24              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:13:26              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:13:36              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:13:36              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:13:36              dut.10.240.183.67: set verbose 1
20/10/2020 15:13:36              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:13:36              dut.10.240.183.67: show port info all
20/10/2020 15:13:36              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:13:36              dut.10.240.183.67: start
20/10/2020 15:13:36              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:13:36              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:13:36              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:13:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:13:37              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x5c77d668 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x945bcfeb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x5c77d668 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:13:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x5c77d668', '0x8'), ('0x945bcfeb', '0xb'), ('0x5c77d668', '0x8')]
20/10/2020 15:13:37              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:13:37              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 15:13:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:13:38              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x33aa2ce6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xfb863565 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x33aa2ce6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:13:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x33aa2ce6', '0x6'), ('0xfb863565', '0x5'), ('0x33aa2ce6', '0x6')]
20/10/2020 15:13:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:13:39              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x33aa2ce6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xfb863565 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x33aa2ce6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:13:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x33aa2ce6', '0x6'), ('0xfb863565', '0x5'), ('0x33aa2ce6', '0x6')]
20/10/2020 15:13:39              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:13:41              dut.10.240.183.67: 
iavf_execute_vf_cmd(): No response or return failure (-5) for cmd 46
iavf_add_del_rss_cfg(): Failed to execute command of OP_DEL_RSS_INPUT_CFG
iavf_hash_destroy(): fail to del RSS configure
iavf_flow_destroy(): Failed to destroy flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to delete rss rule.: Operation not permitted
testpmd> 
20/10/2020 15:13:41             TestCVLIAVFRSSGTPU: Test Case test_ipv4_gtpu_ipv4_ipv4_gtpu_eh_ipv4 Result FAILED: "flow rule ['0'] delete failed"
20/10/2020 15:13:41              dut.10.240.183.67: flow flush 0
20/10/2020 15:13:42              dut.10.240.183.67: 
iavf_execute_vf_cmd(): No response or return failure (-5) for cmd 46
iavf_add_del_rss_cfg(): Failed to execute command of OP_DEL_RSS_INPUT_CFG
iavf_hash_destroy(): fail to del RSS configure
iavf_flow_destroy(): Failed to destroy flow
iavf_flow_flush(): Failed to flush flows
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to delete rss rule.: Operation not permitted
testpmd> 
20/10/2020 15:13:42              dut.10.240.183.67: clear port stats all
20/10/2020 15:13:43              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:13:43              dut.10.240.183.67: stop
20/10/2020 15:13:43              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

Done.
20/10/2020 15:13:43             TestCVLIAVFRSSGTPU: Test Case test_ipv6_gtpu_eh_ipv6_and_ipv6_gtpu_eh_ipv6_tcp Begin
20/10/2020 15:13:43              dut.10.240.183.67: 
20/10/2020 15:13:43                         tester: 
20/10/2020 15:13:43              dut.10.240.183.67: start
20/10/2020 15:13:43              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:13:43              dut.10.240.183.67: quit
20/10/2020 15:13:45              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
iavf_execute_vf_cmd(): No response or return failure (-5) for cmd 46
iavf_add_del_rss_cfg(): Failed to execute command of OP_DEL_RSS_INPUT_CFG
iavf_hash_destroy(): fail to del RSS configure
iavf_flow_destroy(): Failed to destroy flow
iavf_flow_flush(): Failed to flush flows
Done

Bye...
20/10/2020 15:13:45              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:13:46              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:13:56              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:13:56              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:13:56              dut.10.240.183.67: set verbose 1
20/10/2020 15:13:56              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:13:56              dut.10.240.183.67: show port info all
20/10/2020 15:13:56              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:13:56              dut.10.240.183.67: start
20/10/2020 15:13:56              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:13:56              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:13:56              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:13:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:13:57              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x1ca0f8c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x1e194505 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x1ca0f8c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:13:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x1ca0f8c', '0xc'), ('0x1e194505', '0x5'), ('0x1ca0f8c', '0xc')]
20/10/2020 15:13:57              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:13:57              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 15:13:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:13:59              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd587c76 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xa5be5b91 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd587c76 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:13:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xd587c76', '0x6'), ('0xa5be5b91', '0x1'), ('0xd587c76', '0x6')]
20/10/2020 15:13:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:00              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xd587c76 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xd587c76 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xd587c76 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:14:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xd587c76', '0x6'), ('0xd587c76', '0x6'), ('0xd587c76', '0x6')]
20/10/2020 15:14:00              dut.10.240.183.67: flow destroy 0 rule 1
20/10/2020 15:14:01              dut.10.240.183.67: 
Flow rule #1 destroyed
testpmd> 
20/10/2020 15:14:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:02              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x258cefc7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x258cefc7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x258cefc7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x258cefc7', '0x7'), ('0x258cefc7', '0x7'), ('0x258cefc7', '0x7')]
20/10/2020 15:14:02             TestCVLIAVFRSSGTPU: Test Case test_ipv6_gtpu_eh_ipv6_and_ipv6_gtpu_eh_ipv6_tcp Result FAILED: 'except all the packets hash different hash value'
20/10/2020 15:14:02              dut.10.240.183.67: flow flush 0
20/10/2020 15:14:03              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:14:03              dut.10.240.183.67: clear port stats all
20/10/2020 15:14:04              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:14:04              dut.10.240.183.67: stop
20/10/2020 15:14:04              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

Done.
20/10/2020 15:14:04             TestCVLIAVFRSSGTPU: Test Case test_ipv6_gtpu_ipv4_and_ipv6_gtpu_ipv4_tcp Begin
20/10/2020 15:14:05              dut.10.240.183.67: 
20/10/2020 15:14:05                         tester: 
20/10/2020 15:14:05              dut.10.240.183.67: start
20/10/2020 15:14:05              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:14:05              dut.10.240.183.67: quit
20/10/2020 15:14:06              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:14:06              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:14:07              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:14:17              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:14:17              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:14:17              dut.10.240.183.67: set verbose 1
20/10/2020 15:14:17              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:14:17              dut.10.240.183.67: show port info all
20/10/2020 15:14:17              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:14:17              dut.10.240.183.67: start
20/10/2020 15:14:17              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:14:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:14:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:14:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:19              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x69538825 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x59046a51 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x69538825 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:14:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x69538825', '0x5'), ('0x59046a51', '0x1'), ('0x69538825', '0x5')]
20/10/2020 15:14:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 15:14:19              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 15:14:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:20              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xef7acf52 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x327825e0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xef7acf52 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:14:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xef7acf52', '0x2'), ('0x327825e0', '0x0'), ('0xef7acf52', '0x2')]
20/10/2020 15:14:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:21              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xef7acf52 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xef7acf52 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x327825e0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:21             TestCVLIAVFRSSGTPU: hash_infos: [('0xef7acf52', '0x2'), ('0xef7acf52', '0x2'), ('0x327825e0', '0x0')]
20/10/2020 15:14:21             TestCVLIAVFRSSGTPU: Test Case test_ipv6_gtpu_ipv4_and_ipv6_gtpu_ipv4_tcp Result PASSED:
20/10/2020 15:14:21              dut.10.240.183.67: flow flush 0
20/10/2020 15:14:22              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:14:22              dut.10.240.183.67: clear port stats all
20/10/2020 15:14:23              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:14:23              dut.10.240.183.67: stop
20/10/2020 15:14:23              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

Done.
20/10/2020 15:14:23             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4 Begin
20/10/2020 15:14:23              dut.10.240.183.67: 
20/10/2020 15:14:24                         tester: 
20/10/2020 15:14:24              dut.10.240.183.67: start
20/10/2020 15:14:24              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:14:24             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_l3dst================
20/10/2020 15:14:24             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:14:24              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:14:24              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:14:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:14:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:14:24              dut.10.240.183.67: flow list 0
20/10/2020 15:14:24              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:14:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:25              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:14:25             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:14:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:14:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:26              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x25a61f6a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:14:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x25a61f6a', '0xa')]
20/10/2020 15:14:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:27              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:14:27             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:14:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:14:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:28              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:14:28             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:14:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:14:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:29              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x25a61f6a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:14:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x25a61f6a', '0xa')]
20/10/2020 15:14:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:30              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:14:30             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:14:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:14:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:32              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:14:32             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:14:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:14:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:33              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x25a61f6a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:14:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x25a61f6a', '0xa')]
20/10/2020 15:14:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:34              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:14:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:14:34             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:14:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:35              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:14:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:14:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:14:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:36              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x25a61f6a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:14:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x25a61f6a', '0xa')]
20/10/2020 15:14:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:37              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:14:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:14:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:14:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:38              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:14:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:14:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:14:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:39              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x25a61f6a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:14:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x25a61f6a', '0xa')]
20/10/2020 15:14:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:40              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:14:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:14:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:14:40             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:14:40              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:14:42              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:14:42              dut.10.240.183.67: flow list 0
20/10/2020 15:14:42              dut.10.240.183.67: 
20/10/2020 15:14:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:43              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:43             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:14:43             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:14:43             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:14:43             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_l3dst passed
20/10/2020 15:14:43              dut.10.240.183.67: flow flush 0
20/10/2020 15:14:43              dut.10.240.183.67: 
20/10/2020 15:14:43             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_l3src================
20/10/2020 15:14:43             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:14:43              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:14:43              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:14:43              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:14:43              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:14:43              dut.10.240.183.67: flow list 0
20/10/2020 15:14:43              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:14:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:44              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:44             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:14:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:14:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:45              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:45             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:14:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:14:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:46              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6ee636b9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:14:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee636b9', '0x9')]
20/10/2020 15:14:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:47              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:47             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:14:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:14:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:49              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:49             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:14:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:14:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:50              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6ee636b9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:14:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee636b9', '0x9')]
20/10/2020 15:14:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:51              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:51             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:14:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:14:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:52              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:14:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:14:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:53              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x6ee636b9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:14:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee636b9', '0x9')]
20/10/2020 15:14:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:54              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:14:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:14:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:55              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:14:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:14:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:56              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x6ee636b9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:14:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee636b9', '0x9')]
20/10/2020 15:14:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:57              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:57             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:14:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:14:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:14:58              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:14:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:14:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:14:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:00              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x6ee636b9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee636b9', '0x9')]
20/10/2020 15:15:00             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:15:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:15:01              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:15:01              dut.10.240.183.67: flow list 0
20/10/2020 15:15:01              dut.10.240.183.67: 
20/10/2020 15:15:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:02              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:02             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:15:02             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:15:02             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:15:02             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_l3src passed
20/10/2020 15:15:02              dut.10.240.183.67: flow flush 0
20/10/2020 15:15:02              dut.10.240.183.67: 
20/10/2020 15:15:02             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_all================
20/10/2020 15:15:02             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:15:02              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 15:15:02              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:15:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 15:15:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:15:02              dut.10.240.183.67: flow list 0
20/10/2020 15:15:02              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:15:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:03              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x8acb5e2f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:03             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x8acb5e2f', '0xf')]
20/10/2020 15:15:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:04              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x177a3bff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x177a3bff', '0xf')]
20/10/2020 15:15:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:05              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xab921e1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:05             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xab921e1', '0x1')]
20/10/2020 15:15:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:07              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x97084431 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x97084431', '0x1')]
20/10/2020 15:15:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:08              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x8acb5e2f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:08             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x8acb5e2f', '0xf')]
20/10/2020 15:15:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:09              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x177a3bff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x177a3bff', '0xf')]
20/10/2020 15:15:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:10              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xab921e1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xab921e1', '0x1')]
20/10/2020 15:15:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:11              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x97084431 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x97084431', '0x1')]
20/10/2020 15:15:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:12              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x8acb5e2f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:12             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x8acb5e2f', '0xf')]
20/10/2020 15:15:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:13              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x177a3bff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x177a3bff', '0xf')]
20/10/2020 15:15:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:14              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xab921e1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xab921e1', '0x1')]
20/10/2020 15:15:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:15              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x97084431 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x97084431', '0x1')]
20/10/2020 15:15:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:17              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x8acb5e2f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:17             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x8acb5e2f', '0xf')]
20/10/2020 15:15:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:18              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x177a3bff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x177a3bff', '0xf')]
20/10/2020 15:15:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:19              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xab921e1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:19             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xab921e1', '0x1')]
20/10/2020 15:15:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:20              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x97084431 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x97084431', '0x1')]
20/10/2020 15:15:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:21              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x8acb5e2f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:21             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x8acb5e2f', '0xf')]
20/10/2020 15:15:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:22              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x177a3bff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x177a3bff', '0xf')]
20/10/2020 15:15:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:23              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xab921e1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xab921e1', '0x1')]
20/10/2020 15:15:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:24              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x97084431 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x97084431', '0x1')]
20/10/2020 15:15:24             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:15:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:15:25              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:15:25              dut.10.240.183.67: flow list 0
20/10/2020 15:15:25              dut.10.240.183.67: 
20/10/2020 15:15:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:27              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:27             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:15:27             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:15:27             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:15:27             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_all passed
20/10/2020 15:15:27              dut.10.240.183.67: flow flush 0
20/10/2020 15:15:27              dut.10.240.183.67: 
20/10/2020 15:15:27             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_l3dst================
20/10/2020 15:15:27             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:15:27              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:15:27              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:15:27              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:15:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:15:27              dut.10.240.183.67: flow list 0
20/10/2020 15:15:27              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:15:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:28              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:15:28             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:15:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:29              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x25a61f6a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x25a61f6a', '0xa')]
20/10/2020 15:15:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:30              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:15:30             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:15:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:15:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:31              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:15:31             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:15:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:32              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x25a61f6a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x25a61f6a', '0xa')]
20/10/2020 15:15:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:33              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:15:33             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:15:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:15:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:35              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:15:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:15:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:36              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x25a61f6a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x25a61f6a', '0xa')]
20/10/2020 15:15:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:37              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:15:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:15:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:15:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:38              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:15:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:15:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:39              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x25a61f6a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x25a61f6a', '0xa')]
20/10/2020 15:15:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:40              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:15:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:15:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:15:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:41              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:15:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:15:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:42              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x25a61f6a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x25a61f6a', '0xa')]
20/10/2020 15:15:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:43              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xa5d460a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:15:43             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:15:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5d460a4', '0x4')]
20/10/2020 15:15:43             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:15:43              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:15:45              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:15:45              dut.10.240.183.67: flow list 0
20/10/2020 15:15:45              dut.10.240.183.67: 
20/10/2020 15:15:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:46              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:46             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:15:46             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:15:46             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:15:46             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_l3dst passed
20/10/2020 15:15:46              dut.10.240.183.67: flow flush 0
20/10/2020 15:15:46              dut.10.240.183.67: 
20/10/2020 15:15:46             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_l3src================
20/10/2020 15:15:46             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:15:46              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:15:46              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:15:46              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:15:46              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:15:46              dut.10.240.183.67: flow list 0
20/10/2020 15:15:46              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:15:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:47              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:47             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:15:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:48              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:48             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:15:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:15:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:49              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6ee636b9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee636b9', '0x9')]
20/10/2020 15:15:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:50              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:50             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:50             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:15:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:51              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:15:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:15:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:53              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6ee636b9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee636b9', '0x9')]
20/10/2020 15:15:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:54              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:15:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:55              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:15:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:15:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:56              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x6ee636b9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee636b9', '0x9')]
20/10/2020 15:15:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:57              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:57             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:15:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:15:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:58              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:15:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:15:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:15:59              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x6ee636b9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:15:59             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:15:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee636b9', '0x9')]
20/10/2020 15:15:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:00              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:00             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:16:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:16:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:01              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xee944977 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:16:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xee944977', '0x7')]
20/10/2020 15:16:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:03              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x6ee636b9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee636b9', '0x9')]
20/10/2020 15:16:03             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:16:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:16:04              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:16:04              dut.10.240.183.67: flow list 0
20/10/2020 15:16:04              dut.10.240.183.67: 
20/10/2020 15:16:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:05              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:05             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:16:05             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:16:05             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:16:05             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_l3src passed
20/10/2020 15:16:05              dut.10.240.183.67: flow flush 0
20/10/2020 15:16:05              dut.10.240.183.67: 
20/10/2020 15:16:05             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_all================
20/10/2020 15:16:05             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:16:05              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 15:16:05              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:16:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 15:16:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:16:05              dut.10.240.183.67: flow list 0
20/10/2020 15:16:05              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:16:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:06              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x8acb5e2f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:16:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x8acb5e2f', '0xf')]
20/10/2020 15:16:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:07              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x177a3bff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x177a3bff', '0xf')]
20/10/2020 15:16:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:08              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xab921e1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xab921e1', '0x1')]
20/10/2020 15:16:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:10              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x97084431 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x97084431', '0x1')]
20/10/2020 15:16:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:11              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x8acb5e2f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:11             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:16:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x8acb5e2f', '0xf')]
20/10/2020 15:16:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:12              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x177a3bff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:12             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x177a3bff', '0xf')]
20/10/2020 15:16:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:13              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xab921e1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xab921e1', '0x1')]
20/10/2020 15:16:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:14              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x97084431 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x97084431', '0x1')]
20/10/2020 15:16:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:15              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x8acb5e2f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:15             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:16:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x8acb5e2f', '0xf')]
20/10/2020 15:16:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:16              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x177a3bff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x177a3bff', '0xf')]
20/10/2020 15:16:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:17              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xab921e1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xab921e1', '0x1')]
20/10/2020 15:16:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:18              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x97084431 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x97084431', '0x1')]
20/10/2020 15:16:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:19              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x8acb5e2f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:19             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:16:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x8acb5e2f', '0xf')]
20/10/2020 15:16:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:21              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x177a3bff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:21             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x177a3bff', '0xf')]
20/10/2020 15:16:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:22              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xab921e1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xab921e1', '0x1')]
20/10/2020 15:16:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:23              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x97084431 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x97084431', '0x1')]
20/10/2020 15:16:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:24              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x8acb5e2f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:24             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:16:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x8acb5e2f', '0xf')]
20/10/2020 15:16:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:25              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x177a3bff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x177a3bff', '0xf')]
20/10/2020 15:16:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:26              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xab921e1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xab921e1', '0x1')]
20/10/2020 15:16:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:27              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x97084431 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:16:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x97084431', '0x1')]
20/10/2020 15:16:27             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:16:27              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:16:28              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:16:28              dut.10.240.183.67: flow list 0
20/10/2020 15:16:28              dut.10.240.183.67: 
20/10/2020 15:16:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:30              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:30             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:16:30             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:16:30             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:16:30             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_all passed
20/10/2020 15:16:30              dut.10.240.183.67: flow flush 0
20/10/2020 15:16:30              dut.10.240.183.67: 
20/10/2020 15:16:30             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_dl_ipv4_l3dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_l3src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_all': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_l3dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_all': 'passed'}
20/10/2020 15:16:30             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:16:30             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4 Result PASSED:
20/10/2020 15:16:30              dut.10.240.183.67: flow flush 0
20/10/2020 15:16:31              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:16:31              dut.10.240.183.67: clear port stats all
20/10/2020 15:16:32              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:16:32              dut.10.240.183.67: stop
20/10/2020 15:16:32              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:16:32             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_symmetric Begin
20/10/2020 15:16:32              dut.10.240.183.67: 
20/10/2020 15:16:32                         tester: 
20/10/2020 15:16:32              dut.10.240.183.67: start
20/10/2020 15:16:32              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:16:32              dut.10.240.183.67: quit
20/10/2020 15:16:34              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:16:34              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:16:35              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:16:45              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:16:45              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:16:45              dut.10.240.183.67: set verbose 1
20/10/2020 15:16:45              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:16:45              dut.10.240.183.67: show port info all
20/10/2020 15:16:45              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:16:45              dut.10.240.183.67: start
20/10/2020 15:16:45              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:16:45             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_symmetric================
20/10/2020 15:16:45             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:16:45              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:16:45              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:16:45              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:16:45              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:16:45              dut.10.240.183.67: flow list 0
20/10/2020 15:16:46              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:16:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:47              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xb40c69f0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:47             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 15:16:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xb40c69f0', '0x0')]
20/10/2020 15:16:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:48              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xb40c69f0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:48             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:16:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xb40c69f0', '0x0')]
20/10/2020 15:16:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:49              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xef0d6024 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:16:49             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 15:16:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xef0d6024', '0x4')]
20/10/2020 15:16:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:50              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xef0d6024 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:16:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:16:50             TestCVLIAVFRSSGTPU: hash_infos: [('0xef0d6024', '0x4')]
20/10/2020 15:16:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:51              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2c87b9c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:16:51             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 15:16:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x2c87b9c6', '0x6')]
20/10/2020 15:16:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:52              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2c87b9c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:16:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:16:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x2c87b9c6', '0x6')]
20/10/2020 15:16:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:53              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb40c69f0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:53             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 15:16:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xb40c69f0', '0x0')]
20/10/2020 15:16:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:54              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb40c69f0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:16:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xb40c69f0', '0x0')]
20/10/2020 15:16:54             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:16:54              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:16:55              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:16:55              dut.10.240.183.67: flow list 0
20/10/2020 15:16:56              dut.10.240.183.67: 
20/10/2020 15:16:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:57              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:57             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 15:16:57             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:16:57             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:16:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:58              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:58             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 15:16:58             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:16:58             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:16:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:16:59              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:16:59             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 15:16:59             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:16:59             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:16:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:00              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:00             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-udp'}

20/10/2020 15:17:00             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:17:00             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:17:00             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_symmetric passed
20/10/2020 15:17:00              dut.10.240.183.67: flow flush 0
20/10/2020 15:17:00              dut.10.240.183.67: 
20/10/2020 15:17:00             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_symmetric================
20/10/2020 15:17:00             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:17:00              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:17:00              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:17:00              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:17:00              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:17:00              dut.10.240.183.67: flow list 0
20/10/2020 15:17:00              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:17:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:01              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xb40c69f0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:01             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 15:17:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xb40c69f0', '0x0')]
20/10/2020 15:17:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:02              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xb40c69f0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:17:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xb40c69f0', '0x0')]
20/10/2020 15:17:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:04              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xef0d6024 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:04             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 15:17:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xef0d6024', '0x4')]
20/10/2020 15:17:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:05              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xef0d6024 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:17:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xef0d6024', '0x4')]
20/10/2020 15:17:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:06              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2c87b9c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:06             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 15:17:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x2c87b9c6', '0x6')]
20/10/2020 15:17:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:07              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2c87b9c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:07             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:17:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x2c87b9c6', '0x6')]
20/10/2020 15:17:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:08              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb40c69f0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:08             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 15:17:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xb40c69f0', '0x0')]
20/10/2020 15:17:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:09              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb40c69f0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:17:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xb40c69f0', '0x0')]
20/10/2020 15:17:09             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:17:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:17:10              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:17:10              dut.10.240.183.67: flow list 0
20/10/2020 15:17:10              dut.10.240.183.67: 
20/10/2020 15:17:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:11              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:11             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 15:17:11             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:17:11             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:17:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:12              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:12             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 15:17:12             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:17:12             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:17:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:14              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:14             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 15:17:14             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:17:14             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:17:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:15              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:15             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-udp'}

20/10/2020 15:17:15             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:17:15             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:17:15             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_symmetric passed
20/10/2020 15:17:15              dut.10.240.183.67: flow flush 0
20/10/2020 15:17:15              dut.10.240.183.67: 
20/10/2020 15:17:15             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_dl_ipv4_symmetric': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_symmetric': 'passed'}
20/10/2020 15:17:15             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:17:15             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_symmetric Result PASSED:
20/10/2020 15:17:15              dut.10.240.183.67: flow flush 0
20/10/2020 15:17:16              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:17:16              dut.10.240.183.67: clear port stats all
20/10/2020 15:17:17              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:17:17              dut.10.240.183.67: stop
20/10/2020 15:17:17              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

Done.
20/10/2020 15:17:17             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_tcp Begin
20/10/2020 15:17:17              dut.10.240.183.67: 
20/10/2020 15:17:17                         tester: 
20/10/2020 15:17:17              dut.10.240.183.67: start
20/10/2020 15:17:17              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:17:17             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3dst================
20/10/2020 15:17:17             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:17:17              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:17:18              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:17:18              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:17:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:17:18              dut.10.240.183.67: flow list 0
20/10/2020 15:17:18              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:17:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:19              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x357561c9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:19             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:17:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x357561c9', '0x9')]
20/10/2020 15:17:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:20              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x4a580ba9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:17:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x4a580ba9', '0x9')]
20/10/2020 15:17:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:21              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x357561c9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:17:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x357561c9', '0x9')]
20/10/2020 15:17:21             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:17:21              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:17:22              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:17:22              dut.10.240.183.67: flow list 0
20/10/2020 15:17:22              dut.10.240.183.67: 
20/10/2020 15:17:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:23              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:23             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:17:23             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:17:23             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:17:23             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3dst passed
20/10/2020 15:17:23              dut.10.240.183.67: flow flush 0
20/10/2020 15:17:23              dut.10.240.183.67: 
20/10/2020 15:17:23             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3src================
20/10/2020 15:17:23             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:17:23              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:17:23              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:17:23              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:17:23              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:17:23              dut.10.240.183.67: flow list 0
20/10/2020 15:17:24              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:17:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:25              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x8eaa3185 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:25             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:17:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x8eaa3185', '0x5')]
20/10/2020 15:17:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:26              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x8eaa3185 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:26             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:17:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x8eaa3185', '0x5')]
20/10/2020 15:17:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:27              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xf1875be5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:17:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1875be5', '0x5')]
20/10/2020 15:17:27             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:17:27              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:17:28              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:17:28              dut.10.240.183.67: flow list 0
20/10/2020 15:17:28              dut.10.240.183.67: 
20/10/2020 15:17:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:29              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:29             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:17:29             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:17:29             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:17:29             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3src passed
20/10/2020 15:17:29              dut.10.240.183.67: flow flush 0
20/10/2020 15:17:29              dut.10.240.183.67: 
20/10/2020 15:17:29             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3dst_l4src================
20/10/2020 15:17:29             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:17:29              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:17:29              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:17:29              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:17:29              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:17:29              dut.10.240.183.67: flow list 0
20/10/2020 15:17:29              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:17:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:31              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x3b547ee2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:31             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:17:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x3b547ee2', '0x2')]
20/10/2020 15:17:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:32              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x44791482 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:17:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x44791482', '0x2')]
20/10/2020 15:17:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:33              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x601b91d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:17:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x601b91d', '0xd')]
20/10/2020 15:17:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:34              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x3b547ee2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:17:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x3b547ee2', '0x2')]
20/10/2020 15:17:34             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:17:34              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:17:35              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:17:35              dut.10.240.183.67: flow list 0
20/10/2020 15:17:35              dut.10.240.183.67: 
20/10/2020 15:17:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:36              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:36             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:17:36             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:17:36             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:17:36             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3dst_l4src passed
20/10/2020 15:17:36              dut.10.240.183.67: flow flush 0
20/10/2020 15:17:36              dut.10.240.183.67: 
20/10/2020 15:17:36             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3dst_l4dst================
20/10/2020 15:17:36             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:17:36              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:17:36              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:17:36              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:17:36              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:17:36              dut.10.240.183.67: flow list 0
20/10/2020 15:17:37              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:17:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:38              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x5b231d28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:17:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b231d28', '0x8')]
20/10/2020 15:17:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:39              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x240e7748 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:17:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x240e7748', '0x8')]
20/10/2020 15:17:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:40              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x601b91d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:40             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:17:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x601b91d', '0xd')]
20/10/2020 15:17:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:41              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x5b231d28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:41             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:17:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b231d28', '0x8')]
20/10/2020 15:17:41             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:17:41              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:17:42              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:17:42              dut.10.240.183.67: flow list 0
20/10/2020 15:17:42              dut.10.240.183.67: 
20/10/2020 15:17:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:43              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:43             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:17:43             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:17:43             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:17:43             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3dst_l4dst passed
20/10/2020 15:17:43              dut.10.240.183.67: flow flush 0
20/10/2020 15:17:43              dut.10.240.183.67: 
20/10/2020 15:17:43             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3src_l4src================
20/10/2020 15:17:43             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:17:43              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:17:43              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:17:43              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:17:43              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:17:43              dut.10.240.183.67: flow list 0
20/10/2020 15:17:44              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:17:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:45              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x808b2eae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:45             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:17:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x808b2eae', '0xe')]
20/10/2020 15:17:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:46              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xffa644ce - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:17:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xffa644ce', '0xe')]
20/10/2020 15:17:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:47              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xbddee951 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:47             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:17:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xbddee951', '0x1')]
20/10/2020 15:17:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:48              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x808b2eae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:48             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:17:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x808b2eae', '0xe')]
20/10/2020 15:17:48             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:17:48              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:17:49              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:17:49              dut.10.240.183.67: flow list 0
20/10/2020 15:17:49              dut.10.240.183.67: 
20/10/2020 15:17:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:50              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:50             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:17:50             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:17:50             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:17:50             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3src_l4src passed
20/10/2020 15:17:50              dut.10.240.183.67: flow flush 0
20/10/2020 15:17:50              dut.10.240.183.67: 
20/10/2020 15:17:50             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3src_l4dst================
20/10/2020 15:17:50             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:17:50              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:17:50              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:17:50              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:17:50              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:17:50              dut.10.240.183.67: flow list 0
20/10/2020 15:17:51              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:17:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:52              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe0fc4d64 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:52             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:17:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xe0fc4d64', '0x4')]
20/10/2020 15:17:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:53              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x9fd12704 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:17:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x9fd12704', '0x4')]
20/10/2020 15:17:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:54              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xbddee951 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:54             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:17:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xbddee951', '0x1')]
20/10/2020 15:17:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:55              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe0fc4d64 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:17:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:17:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xe0fc4d64', '0x4')]
20/10/2020 15:17:55             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:17:55              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:17:56              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:17:56              dut.10.240.183.67: flow list 0
20/10/2020 15:17:56              dut.10.240.183.67: 
20/10/2020 15:17:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:57              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:57             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:17:57             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:17:57             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:17:57             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3src_l4dst passed
20/10/2020 15:17:57              dut.10.240.183.67: flow flush 0
20/10/2020 15:17:57              dut.10.240.183.67: 
20/10/2020 15:17:57             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_tcp_l4src================
20/10/2020 15:17:57             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:17:57              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:17:57              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:17:57              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:17:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:17:58              dut.10.240.183.67: flow list 0
20/10/2020 15:17:58              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:17:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:17:59              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x8707dd19 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:17:59             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:17:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x8707dd19', '0x9')]
20/10/2020 15:17:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:00              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xfb638b4b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xfb638b4b', '0xb')]
20/10/2020 15:18:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:01              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x8707dd19 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:18:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x8707dd19', '0x9')]
20/10/2020 15:18:01             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:18:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:18:02              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:18:02              dut.10.240.183.67: flow list 0
20/10/2020 15:18:02              dut.10.240.183.67: 
20/10/2020 15:18:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:03              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:03             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:18:03             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:18:03             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:18:03             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_tcp_l4src passed
20/10/2020 15:18:03              dut.10.240.183.67: flow flush 0
20/10/2020 15:18:03              dut.10.240.183.67: 
20/10/2020 15:18:03             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_tcp_l4dst================
20/10/2020 15:18:03             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:18:03              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:18:03              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:18:03              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:18:03              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:18:03              dut.10.240.183.67: flow list 0
20/10/2020 15:18:03              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:18:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:05              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x3f78f073 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:05             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:18:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f78f073', '0x3')]
20/10/2020 15:18:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:06              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x431ca621 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:06             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x431ca621', '0x1')]
20/10/2020 15:18:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:07              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x3f78f073 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:07             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:18:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f78f073', '0x3')]
20/10/2020 15:18:07             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:18:07              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:18:08              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:18:08              dut.10.240.183.67: flow list 0
20/10/2020 15:18:08              dut.10.240.183.67: 
20/10/2020 15:18:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:09              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:09             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:18:09             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:18:09             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:18:09             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_tcp_l4dst passed
20/10/2020 15:18:09              dut.10.240.183.67: flow flush 0
20/10/2020 15:18:09              dut.10.240.183.67: 
20/10/2020 15:18:09             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_tcp_all================
20/10/2020 15:18:09             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:18:09              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:18:09              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:18:09              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:18:09              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:18:09              dut.10.240.183.67: flow list 0
20/10/2020 15:18:09              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:18:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:10              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe8c92d73 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:10             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:18:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xe8c92d73', '0x3')]
20/10/2020 15:18:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:12              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe6d424f1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:12             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xe6d424f1', '0x1')]
20/10/2020 15:18:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:13              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe14b3453 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xe14b3453', '0x3')]
20/10/2020 15:18:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:14              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x9faae7cc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x9faae7cc', '0xc')]
20/10/2020 15:18:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:15              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x97e44713 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x97e44713', '0x3')]
20/10/2020 15:18:15             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:18:15              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:18:16              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:18:16              dut.10.240.183.67: flow list 0
20/10/2020 15:18:16              dut.10.240.183.67: 
20/10/2020 15:18:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:17              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:17             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:18:17             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:18:17             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:18:17             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_tcp_all passed
20/10/2020 15:18:17              dut.10.240.183.67: flow flush 0
20/10/2020 15:18:17              dut.10.240.183.67: 
20/10/2020 15:18:17             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3dst================
20/10/2020 15:18:17             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:18:17              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:18:17              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:18:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:18:17              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:18:17              dut.10.240.183.67: flow list 0
20/10/2020 15:18:18              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:18:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:19              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x357561c9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:19             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:18:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x357561c9', '0x9')]
20/10/2020 15:18:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:20              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x4a580ba9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x4a580ba9', '0x9')]
20/10/2020 15:18:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:21              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x357561c9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:18:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x357561c9', '0x9')]
20/10/2020 15:18:21             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:18:21              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:18:22              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:18:22              dut.10.240.183.67: flow list 0
20/10/2020 15:18:22              dut.10.240.183.67: 
20/10/2020 15:18:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:23              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:23             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:18:23             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:18:23             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:18:23             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3dst passed
20/10/2020 15:18:23              dut.10.240.183.67: flow flush 0
20/10/2020 15:18:23              dut.10.240.183.67: 
20/10/2020 15:18:23             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3src================
20/10/2020 15:18:23             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:18:23              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:18:23              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:18:23              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:18:23              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:18:23              dut.10.240.183.67: flow list 0
20/10/2020 15:18:23              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:18:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:25              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x8eaa3185 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:25             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:18:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x8eaa3185', '0x5')]
20/10/2020 15:18:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:26              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x8eaa3185 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:26             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:18:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x8eaa3185', '0x5')]
20/10/2020 15:18:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:27              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xf1875be5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1875be5', '0x5')]
20/10/2020 15:18:27             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:18:27              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:18:28              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:18:28              dut.10.240.183.67: flow list 0
20/10/2020 15:18:28              dut.10.240.183.67: 
20/10/2020 15:18:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:29              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:29             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:18:29             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:18:29             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:18:29             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3src passed
20/10/2020 15:18:29              dut.10.240.183.67: flow flush 0
20/10/2020 15:18:29              dut.10.240.183.67: 
20/10/2020 15:18:29             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3dst_l4src================
20/10/2020 15:18:29             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:18:29              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:18:29              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:18:29              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:18:29              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:18:29              dut.10.240.183.67: flow list 0
20/10/2020 15:18:29              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:18:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:30              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x3b547ee2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:30             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:18:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x3b547ee2', '0x2')]
20/10/2020 15:18:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:32              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x44791482 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x44791482', '0x2')]
20/10/2020 15:18:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:33              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x601b91d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x601b91d', '0xd')]
20/10/2020 15:18:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:34              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x3b547ee2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:18:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x3b547ee2', '0x2')]
20/10/2020 15:18:34             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:18:34              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:18:35              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:18:35              dut.10.240.183.67: flow list 0
20/10/2020 15:18:35              dut.10.240.183.67: 
20/10/2020 15:18:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:36              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:36             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:18:36             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:18:36             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:18:36             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3dst_l4src passed
20/10/2020 15:18:36              dut.10.240.183.67: flow flush 0
20/10/2020 15:18:36              dut.10.240.183.67: 
20/10/2020 15:18:36             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3dst_l4dst================
20/10/2020 15:18:36             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:18:36              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:18:36              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:18:36              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:18:36              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:18:36              dut.10.240.183.67: flow list 0
20/10/2020 15:18:36              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:18:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:37              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x5b231d28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:37             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:18:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b231d28', '0x8')]
20/10/2020 15:18:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:39              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x240e7748 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x240e7748', '0x8')]
20/10/2020 15:18:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:40              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x601b91d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:40             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x601b91d', '0xd')]
20/10/2020 15:18:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:41              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x5b231d28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:41             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:18:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b231d28', '0x8')]
20/10/2020 15:18:41             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:18:41              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:18:42              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:18:42              dut.10.240.183.67: flow list 0
20/10/2020 15:18:42              dut.10.240.183.67: 
20/10/2020 15:18:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:43              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:43             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:18:43             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:18:43             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:18:43             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3dst_l4dst passed
20/10/2020 15:18:43              dut.10.240.183.67: flow flush 0
20/10/2020 15:18:43              dut.10.240.183.67: 
20/10/2020 15:18:43             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3src_l4src================
20/10/2020 15:18:43             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:18:43              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:18:43              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:18:43              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:18:43              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:18:43              dut.10.240.183.67: flow list 0
20/10/2020 15:18:43              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:18:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:44              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x808b2eae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:44             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:18:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x808b2eae', '0xe')]
20/10/2020 15:18:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:45              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xffa644ce - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xffa644ce', '0xe')]
20/10/2020 15:18:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:47              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xbddee951 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:47             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xbddee951', '0x1')]
20/10/2020 15:18:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:48              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x808b2eae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:48             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:18:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x808b2eae', '0xe')]
20/10/2020 15:18:48             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:18:48              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:18:49              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:18:49              dut.10.240.183.67: flow list 0
20/10/2020 15:18:49              dut.10.240.183.67: 
20/10/2020 15:18:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:50              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:50             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:18:50             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:18:50             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:18:50             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3src_l4src passed
20/10/2020 15:18:50              dut.10.240.183.67: flow flush 0
20/10/2020 15:18:50              dut.10.240.183.67: 
20/10/2020 15:18:50             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3src_l4dst================
20/10/2020 15:18:50             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:18:50              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:18:50              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:18:50              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:18:50              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:18:50              dut.10.240.183.67: flow list 0
20/10/2020 15:18:50              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:18:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:51              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe0fc4d64 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:51             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:18:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xe0fc4d64', '0x4')]
20/10/2020 15:18:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:53              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x9fd12704 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x9fd12704', '0x4')]
20/10/2020 15:18:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:54              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xbddee951 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:54             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:18:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xbddee951', '0x1')]
20/10/2020 15:18:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:55              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe0fc4d64 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:18:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:18:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xe0fc4d64', '0x4')]
20/10/2020 15:18:55             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:18:55              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:18:56              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:18:56              dut.10.240.183.67: flow list 0
20/10/2020 15:18:56              dut.10.240.183.67: 
20/10/2020 15:18:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:57              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:57             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:18:57             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:18:57             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:18:57             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3src_l4dst passed
20/10/2020 15:18:57              dut.10.240.183.67: flow flush 0
20/10/2020 15:18:57              dut.10.240.183.67: 
20/10/2020 15:18:57             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_tcp_l4src================
20/10/2020 15:18:57             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:18:57              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:18:57              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:18:57              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:18:57              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:18:57              dut.10.240.183.67: flow list 0
20/10/2020 15:18:57              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:18:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:18:58              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x8707dd19 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:18:58             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:18:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x8707dd19', '0x9')]
20/10/2020 15:18:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:00              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xfb638b4b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:19:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xfb638b4b', '0xb')]
20/10/2020 15:19:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:01              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x8707dd19 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:19:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x8707dd19', '0x9')]
20/10/2020 15:19:01             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:19:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:19:02              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:19:02              dut.10.240.183.67: flow list 0
20/10/2020 15:19:02              dut.10.240.183.67: 
20/10/2020 15:19:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:03              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:03             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:19:03             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:19:03             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:19:03             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_tcp_l4src passed
20/10/2020 15:19:03              dut.10.240.183.67: flow flush 0
20/10/2020 15:19:03              dut.10.240.183.67: 
20/10/2020 15:19:03             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_tcp_l4dst================
20/10/2020 15:19:03             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:19:03              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:19:03              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:19:03              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:19:03              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:19:03              dut.10.240.183.67: flow list 0
20/10/2020 15:19:03              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:19:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:04              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x3f78f073 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:19:04             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:19:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f78f073', '0x3')]
20/10/2020 15:19:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:05              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x431ca621 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:05             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:19:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x431ca621', '0x1')]
20/10/2020 15:19:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:07              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x3f78f073 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:19:07             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:19:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f78f073', '0x3')]
20/10/2020 15:19:07             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:19:07              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:19:08              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:19:08              dut.10.240.183.67: flow list 0
20/10/2020 15:19:08              dut.10.240.183.67: 
20/10/2020 15:19:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:09              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:09             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:19:09             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:19:09             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:19:09             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_tcp_l4dst passed
20/10/2020 15:19:09              dut.10.240.183.67: flow flush 0
20/10/2020 15:19:09              dut.10.240.183.67: 
20/10/2020 15:19:09             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_tcp_all================
20/10/2020 15:19:09             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:19:09              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:19:09              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:19:09              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:19:09              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:19:09              dut.10.240.183.67: flow list 0
20/10/2020 15:19:09              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:19:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:10              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe8c92d73 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:19:10             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:19:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xe8c92d73', '0x3')]
20/10/2020 15:19:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:11              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe6d424f1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:19:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xe6d424f1', '0x1')]
20/10/2020 15:19:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:12              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe14b3453 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:19:12             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:19:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xe14b3453', '0x3')]
20/10/2020 15:19:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:14              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x9faae7cc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:19:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x9faae7cc', '0xc')]
20/10/2020 15:19:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:15              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x97e44713 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:19:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:19:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x97e44713', '0x3')]
20/10/2020 15:19:15             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:19:15              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:19:16              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:19:16              dut.10.240.183.67: flow list 0
20/10/2020 15:19:16              dut.10.240.183.67: 
20/10/2020 15:19:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:17              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:17             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:19:17             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:19:17             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:19:17             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_tcp_all passed
20/10/2020 15:19:17              dut.10.240.183.67: flow flush 0
20/10/2020 15:19:17              dut.10.240.183.67: 
20/10/2020 15:19:17             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_tcp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_tcp_l4src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_tcp_l4dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_tcp_all': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_tcp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_tcp_l4src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_tcp_l4dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_tcp_all': 'passed'}
20/10/2020 15:19:17             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:19:17             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_tcp Result PASSED:
20/10/2020 15:19:17              dut.10.240.183.67: flow flush 0
20/10/2020 15:19:18              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:19:18              dut.10.240.183.67: clear port stats all
20/10/2020 15:19:19              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:19:19              dut.10.240.183.67: stop
20/10/2020 15:19:19              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:19:19             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_tcp_symmetric Begin
20/10/2020 15:19:20              dut.10.240.183.67: 
20/10/2020 15:19:20                         tester: 
20/10/2020 15:19:20              dut.10.240.183.67: start
20/10/2020 15:19:20              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:19:20              dut.10.240.183.67: quit
20/10/2020 15:19:21              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:19:21              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:19:22              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:19:32              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:19:32              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:19:32              dut.10.240.183.67: set verbose 1
20/10/2020 15:19:33              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:19:33              dut.10.240.183.67: show port info all
20/10/2020 15:19:33              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:19:33              dut.10.240.183.67: start
20/10/2020 15:19:33              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:19:33             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_tcp_symmetric================
20/10/2020 15:19:33             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:19:33              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:19:33              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:19:33              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:19:33              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:19:33              dut.10.240.183.67: flow list 0
20/10/2020 15:19:33              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:19:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:34              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x58c154e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:19:34             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:19:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x58c154e5', '0x5')]
20/10/2020 15:19:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:35              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x58c154e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:19:35             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:19:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x58c154e5', '0x5')]
20/10/2020 15:19:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:36              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x58c154e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:19:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:19:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x58c154e5', '0x5')]
20/10/2020 15:19:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:37              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x58c154e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:19:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:19:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x58c154e5', '0x5')]
20/10/2020 15:19:37             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:19:37              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:19:38              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:19:38              dut.10.240.183.67: flow list 0
20/10/2020 15:19:39              dut.10.240.183.67: 
20/10/2020 15:19:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:40              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:40             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:19:40             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:19:40             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:19:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:41              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:41             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:19:41             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:19:41             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:19:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:42              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:42             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:19:42             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:19:42             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:19:42             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_tcp_symmetric passed
20/10/2020 15:19:42              dut.10.240.183.67: flow flush 0
20/10/2020 15:19:42              dut.10.240.183.67: 
20/10/2020 15:19:42             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_tcp_symmetric================
20/10/2020 15:19:42             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:19:42              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:19:42              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:19:42              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:19:42              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:19:42              dut.10.240.183.67: flow list 0
20/10/2020 15:19:42              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:19:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:43              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x58c154e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:19:43             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:19:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x58c154e5', '0x5')]
20/10/2020 15:19:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:44              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x58c154e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:19:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:19:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x58c154e5', '0x5')]
20/10/2020 15:19:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:45              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x58c154e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:19:45             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:19:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x58c154e5', '0x5')]
20/10/2020 15:19:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:47              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x58c154e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:19:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:19:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x58c154e5', '0x5')]
20/10/2020 15:19:47             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:19:47              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:19:48              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:19:48              dut.10.240.183.67: flow list 0
20/10/2020 15:19:48              dut.10.240.183.67: 
20/10/2020 15:19:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:49              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:49             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:19:49             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:19:49             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:19:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:50              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:50             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:19:50             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:19:50             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:19:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:51              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:51             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:19:51             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:19:51             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:19:51             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_tcp_symmetric passed
20/10/2020 15:19:51              dut.10.240.183.67: flow flush 0
20/10/2020 15:19:51              dut.10.240.183.67: 
20/10/2020 15:19:51             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_dl_ipv4_tcp_symmetric': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_tcp_symmetric': 'passed'}
20/10/2020 15:19:51             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:19:51             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_tcp_symmetric Result PASSED:
20/10/2020 15:19:51              dut.10.240.183.67: flow flush 0
20/10/2020 15:19:52              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:19:52              dut.10.240.183.67: clear port stats all
20/10/2020 15:19:54              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:19:54              dut.10.240.183.67: stop
20/10/2020 15:19:54              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:19:54             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl Begin
20/10/2020 15:19:54              dut.10.240.183.67: 
20/10/2020 15:19:54                         tester: 
20/10/2020 15:19:54              dut.10.240.183.67: start
20/10/2020 15:19:54              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:19:54             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3src================
20/10/2020 15:19:54             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:19:54              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:19:54              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:19:54              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:19:54              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:19:54              dut.10.240.183.67: flow list 0
20/10/2020 15:19:54              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:19:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:55              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x3ffb9bba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:55             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:19:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ffb9bba', '0xa')]
20/10/2020 15:19:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:56              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x3ffb9bba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:56             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:19:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ffb9bba', '0xa')]
20/10/2020 15:19:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:57              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xbfa153db - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:19:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xbfa153db', '0xb')]
20/10/2020 15:19:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:19:58              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x3ffb9bba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:19:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:19:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ffb9bba', '0xa')]
20/10/2020 15:19:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:19:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:20:00              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:20:00              dut.10.240.183.67: flow list 0
20/10/2020 15:20:00              dut.10.240.183.67: 
20/10/2020 15:20:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:01              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:01             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:20:01             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:20:01             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:20:01             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3src passed
20/10/2020 15:20:01              dut.10.240.183.67: flow flush 0
20/10/2020 15:20:01              dut.10.240.183.67: 
20/10/2020 15:20:01             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst================
20/10/2020 15:20:01             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:20:01              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:20:01              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:20:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:20:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:20:01              dut.10.240.183.67: flow list 0
20/10/2020 15:20:01              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:20:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:02              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x4857ca98 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:02             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:20:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x4857ca98', '0x8')]
20/10/2020 15:20:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:03              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x4857ca98 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x4857ca98', '0x8')]
20/10/2020 15:20:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:04              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xc80d02f9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xc80d02f9', '0x9')]
20/10/2020 15:20:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:06              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x4857ca98 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x4857ca98', '0x8')]
20/10/2020 15:20:06             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:20:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:20:07              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:20:07              dut.10.240.183.67: flow list 0
20/10/2020 15:20:07              dut.10.240.183.67: 
20/10/2020 15:20:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:08              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:08             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:20:08             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:20:08             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:20:08             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst passed
20/10/2020 15:20:08              dut.10.240.183.67: flow flush 0
20/10/2020 15:20:08              dut.10.240.183.67: 
20/10/2020 15:20:08             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3src_l4dst================
20/10/2020 15:20:08             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:20:08              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:20:08              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:20:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:20:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:20:08              dut.10.240.183.67: flow list 0
20/10/2020 15:20:08              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:20:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:09              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xf0b5ca89 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:09             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:20:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xf0b5ca89', '0x9')]
20/10/2020 15:20:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:10              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x4c1418e6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:20:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x4c1418e6', '0x6')]
20/10/2020 15:20:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:11              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x70ef02e8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x70ef02e8', '0x8')]
20/10/2020 15:20:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:13              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xf0b5ca89 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xf0b5ca89', '0x9')]
20/10/2020 15:20:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:14              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xf0b5ca89 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:14             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xf0b5ca89', '0x9')]
20/10/2020 15:20:14             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:20:14              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:20:15              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:20:15              dut.10.240.183.67: flow list 0
20/10/2020 15:20:15              dut.10.240.183.67: 
20/10/2020 15:20:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:16              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:16             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:20:16             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:20:16             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:20:16             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3src_l4dst passed
20/10/2020 15:20:16              dut.10.240.183.67: flow flush 0
20/10/2020 15:20:16              dut.10.240.183.67: 
20/10/2020 15:20:16             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst_l4src================
20/10/2020 15:20:16             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:20:16              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:20:16              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:20:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:20:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:20:16              dut.10.240.183.67: flow list 0
20/10/2020 15:20:16              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:20:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:17              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe6daae4c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:17             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:20:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xe6daae4c', '0xc')]
20/10/2020 15:20:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:18              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xb59d337 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xb59d337', '0x7')]
20/10/2020 15:20:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:20              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x6680662d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:20:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x6680662d', '0xd')]
20/10/2020 15:20:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:21              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe6daae4c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:21             TestCVLIAVFRSSGTPU: hash_infos: [('0xe6daae4c', '0xc')]
20/10/2020 15:20:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:22              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe6daae4c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:22             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xe6daae4c', '0xc')]
20/10/2020 15:20:22             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:20:22              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:20:23              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:20:23              dut.10.240.183.67: flow list 0
20/10/2020 15:20:23              dut.10.240.183.67: 
20/10/2020 15:20:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:24              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:24             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:20:24             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:20:24             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:20:24             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst_l4src passed
20/10/2020 15:20:24              dut.10.240.183.67: flow flush 0
20/10/2020 15:20:24              dut.10.240.183.67: 
20/10/2020 15:20:24             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3src_l4src================
20/10/2020 15:20:24             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:20:24              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:20:24              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:20:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:20:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:20:24              dut.10.240.183.67: flow list 0
20/10/2020 15:20:24              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:20:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:25              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x9176ff6e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:25             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:20:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x9176ff6e', '0xe')]
20/10/2020 15:20:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:27              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x7cf58215 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:20:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x7cf58215', '0x5')]
20/10/2020 15:20:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:28              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x112c370f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x112c370f', '0xf')]
20/10/2020 15:20:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:29              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x9176ff6e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:29             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x9176ff6e', '0xe')]
20/10/2020 15:20:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:30              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x9176ff6e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:30             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x9176ff6e', '0xe')]
20/10/2020 15:20:30             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:20:30              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:20:31              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:20:31              dut.10.240.183.67: flow list 0
20/10/2020 15:20:31              dut.10.240.183.67: 
20/10/2020 15:20:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:32             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:20:32             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:20:32             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:20:32             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3src_l4src passed
20/10/2020 15:20:32              dut.10.240.183.67: flow flush 0
20/10/2020 15:20:32              dut.10.240.183.67: 
20/10/2020 15:20:32             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst_l4dst================
20/10/2020 15:20:32             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:20:32              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:20:32              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:20:32              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:20:32              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:20:32              dut.10.240.183.67: flow list 0
20/10/2020 15:20:33              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:20:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:34              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x87199bab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:34             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:20:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x87199bab', '0xb')]
20/10/2020 15:20:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:35              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x3bb849c4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:20:35             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x3bb849c4', '0x4')]
20/10/2020 15:20:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:36              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x74353ca - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x74353ca', '0xa')]
20/10/2020 15:20:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:37              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x87199bab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x87199bab', '0xb')]
20/10/2020 15:20:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:38              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x87199bab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:38             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x87199bab', '0xb')]
20/10/2020 15:20:38             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:20:38              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:20:39              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:20:39              dut.10.240.183.67: flow list 0
20/10/2020 15:20:39              dut.10.240.183.67: 
20/10/2020 15:20:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:40              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:40             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:20:40             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:20:40             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:20:40             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst_l4dst passed
20/10/2020 15:20:40              dut.10.240.183.67: flow flush 0
20/10/2020 15:20:40              dut.10.240.183.67: 
20/10/2020 15:20:40             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l4src_only================
20/10/2020 15:20:40             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:20:40              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:20:40              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:20:40              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:20:41              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:20:41              dut.10.240.183.67: flow list 0
20/10/2020 15:20:41              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:20:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:42              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x7995d71a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:42             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:20:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x7995d71a', '0xa')]
20/10/2020 15:20:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:43              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x2dd9ebb6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:20:43             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x2dd9ebb6', '0x6')]
20/10/2020 15:20:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:44              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x7995d71a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x7995d71a', '0xa')]
20/10/2020 15:20:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:45              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x7995d71a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:45             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x7995d71a', '0xa')]
20/10/2020 15:20:45             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:20:45              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:20:46              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:20:46              dut.10.240.183.67: flow list 0
20/10/2020 15:20:46              dut.10.240.183.67: 
20/10/2020 15:20:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:47              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:47             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:20:47             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:20:47             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:20:47             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l4src_only passed
20/10/2020 15:20:47              dut.10.240.183.67: flow flush 0
20/10/2020 15:20:47              dut.10.240.183.67: 
20/10/2020 15:20:47             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l4dst_only================
20/10/2020 15:20:47             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:20:47              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:20:47              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:20:47              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:20:48              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:20:48              dut.10.240.183.67: flow list 0
20/10/2020 15:20:48              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:20:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:49              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe5158dd2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:20:49             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:20:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xe5158dd2', '0x2')]
20/10/2020 15:20:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:50              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x6399c6d2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:20:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x6399c6d2', '0x2')]
20/10/2020 15:20:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:51              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe5158dd2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:20:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xe5158dd2', '0x2')]
20/10/2020 15:20:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:52              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xe5158dd2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:20:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:20:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xe5158dd2', '0x2')]
20/10/2020 15:20:52             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:20:52              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:20:53              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:20:53              dut.10.240.183.67: flow list 0
20/10/2020 15:20:53              dut.10.240.183.67: 
20/10/2020 15:20:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:54              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:54             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:20:54             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:20:54             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:20:54             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l4dst_only passed
20/10/2020 15:20:54              dut.10.240.183.67: flow flush 0
20/10/2020 15:20:54              dut.10.240.183.67: 
20/10/2020 15:20:54             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp================
20/10/2020 15:20:54             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:20:54              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:20:54              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:20:54              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:20:55              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:20:55              dut.10.240.183.67: flow list 0
20/10/2020 15:20:55              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:20:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:56              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x5e12a8f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:56             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:20:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x5e12a8f', '0xf')]
20/10/2020 15:20:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:57              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x19d7de14 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:20:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x19d7de14', '0x4')]
20/10/2020 15:20:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:58              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xf17a88ec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:58             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xf17a88ec', '0xc')]
20/10/2020 15:20:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:20:59              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xc6d4cdb9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:20:59             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:20:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xc6d4cdb9', '0x9')]
20/10/2020 15:20:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:00              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x85bbe2ee - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:21:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x85bbe2ee', '0xe')]
20/10/2020 15:21:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:01              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x5e12a8f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:21:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x5e12a8f', '0xf')]
20/10/2020 15:21:01             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:21:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:21:02              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:21:02              dut.10.240.183.67: flow list 0
20/10/2020 15:21:02              dut.10.240.183.67: 
20/10/2020 15:21:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:04              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:04             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:21:04             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:21:04             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:21:04             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp passed
20/10/2020 15:21:04              dut.10.240.183.67: flow flush 0
20/10/2020 15:21:04              dut.10.240.183.67: 
20/10/2020 15:21:04             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l4src_only': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp_l4dst_only': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_tcp': 'passed'}
20/10/2020 15:21:04             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:21:04             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl Result PASSED:
20/10/2020 15:21:04              dut.10.240.183.67: flow flush 0
20/10/2020 15:21:05              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:21:05              dut.10.240.183.67: clear port stats all
20/10/2020 15:21:06              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:21:06              dut.10.240.183.67: stop
20/10/2020 15:21:06              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:21:06             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric Begin
20/10/2020 15:21:06              dut.10.240.183.67: 
20/10/2020 15:21:06                         tester: 
20/10/2020 15:21:06              dut.10.240.183.67: start
20/10/2020 15:21:06              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:21:06              dut.10.240.183.67: quit
20/10/2020 15:21:08              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:21:08              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:21:09              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:21:19              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:21:19              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:21:19              dut.10.240.183.67: set verbose 1
20/10/2020 15:21:20              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:21:20              dut.10.240.183.67: show port info all
20/10/2020 15:21:20              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:21:20              dut.10.240.183.67: start
20/10/2020 15:21:20              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:21:20             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric================
20/10/2020 15:21:20             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:21:20              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:21:20              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:21:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:21:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:21:20              dut.10.240.183.67: flow list 0
20/10/2020 15:21:20              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:21:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:21              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x981d8251 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:21             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-dl'}

20/10/2020 15:21:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x981d8251', '0x1')]
20/10/2020 15:21:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:22              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x981d8251 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:22             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:21:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x981d8251', '0x1')]
20/10/2020 15:21:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:23              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x981d8251 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:23             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:21:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x981d8251', '0x1')]
20/10/2020 15:21:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:24              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x981d8251 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:21:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x981d8251', '0x1')]
20/10/2020 15:21:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:25              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x981d8251 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:25             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-ul'}

20/10/2020 15:21:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x981d8251', '0x1')]
20/10/2020 15:21:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:26              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x981d8251 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:26             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:21:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x981d8251', '0x1')]
20/10/2020 15:21:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:28              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x981d8251 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:28             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:21:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x981d8251', '0x1')]
20/10/2020 15:21:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:29              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x981d8251 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:29             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:21:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x981d8251', '0x1')]
20/10/2020 15:21:29             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:21:29              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:21:30              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:21:30              dut.10.240.183.67: flow list 0
20/10/2020 15:21:30              dut.10.240.183.67: 
20/10/2020 15:21:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:31              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:31             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:21:31             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:21:31             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:21:31             TestCVLIAVFRSSGTPU: action: udp-dl

20/10/2020 15:21:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:32             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:21:32             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:21:32             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:21:32             TestCVLIAVFRSSGTPU: action: udp-ul

20/10/2020 15:21:32             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric passed
20/10/2020 15:21:32              dut.10.240.183.67: flow flush 0
20/10/2020 15:21:32              dut.10.240.183.67: 
20/10/2020 15:21:32             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric': 'passed'}
20/10/2020 15:21:32             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:21:32             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric Result PASSED:
20/10/2020 15:21:32              dut.10.240.183.67: flow flush 0
20/10/2020 15:21:33              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:21:33              dut.10.240.183.67: clear port stats all
20/10/2020 15:21:35              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:21:35              dut.10.240.183.67: stop
20/10/2020 15:21:35              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:21:35             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_udp Begin
20/10/2020 15:21:35              dut.10.240.183.67: 
20/10/2020 15:21:35                         tester: 
20/10/2020 15:21:35              dut.10.240.183.67: start
20/10/2020 15:21:35              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:21:35             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst================
20/10/2020 15:21:35             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:21:35              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:21:35              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:21:35              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:21:35              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:21:35              dut.10.240.183.67: flow list 0
20/10/2020 15:21:35              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:21:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:36              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x74392125 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:21:36             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:21:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x74392125', '0x5')]
20/10/2020 15:21:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:37              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xeabd2d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:37             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:21:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xeabd2d1', '0x1')]
20/10/2020 15:21:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:38              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x74392125 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:21:38             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:21:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x74392125', '0x5')]
20/10/2020 15:21:38             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:21:38              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:21:40              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:21:40              dut.10.240.183.67: flow list 0
20/10/2020 15:21:40              dut.10.240.183.67: 
20/10/2020 15:21:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:41              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:41             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:21:41             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:21:41             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:21:41             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst passed
20/10/2020 15:21:41              dut.10.240.183.67: flow flush 0
20/10/2020 15:21:41              dut.10.240.183.67: 
20/10/2020 15:21:41             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src================
20/10/2020 15:21:41             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:21:41              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:21:41              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:21:41              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:21:41              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:21:41              dut.10.240.183.67: flow list 0
20/10/2020 15:21:41              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:21:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:42              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xafb32f53 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:21:42             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:21:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xafb32f53', '0x3')]
20/10/2020 15:21:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:43              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xafb32f53 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:21:43             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:21:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xafb32f53', '0x3')]
20/10/2020 15:21:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:44              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xd521dca7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:21:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xd521dca7', '0x7')]
20/10/2020 15:21:44             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:21:44              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:21:45              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:21:45              dut.10.240.183.67: flow list 0
20/10/2020 15:21:46              dut.10.240.183.67: 
20/10/2020 15:21:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:47              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:47             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:21:47             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:21:47             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:21:47             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src passed
20/10/2020 15:21:47              dut.10.240.183.67: flow flush 0
20/10/2020 15:21:47              dut.10.240.183.67: 
20/10/2020 15:21:47             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst_l4src================
20/10/2020 15:21:47             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:21:47              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:21:47              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:21:47              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:21:47              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:21:47              dut.10.240.183.67: flow list 0
20/10/2020 15:21:47              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:21:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:48              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x4c4799bc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:21:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x4c4799bc', '0xc')]
20/10/2020 15:21:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:49              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x36d56a48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:21:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x36d56a48', '0x8')]
20/10/2020 15:21:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:50              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1fc00b93 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:21:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:21:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x1fc00b93', '0x3')]
20/10/2020 15:21:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:51              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x4c4799bc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:21:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x4c4799bc', '0xc')]
20/10/2020 15:21:51             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:21:51              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:21:52              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:21:52              dut.10.240.183.67: flow list 0
20/10/2020 15:21:53              dut.10.240.183.67: 
20/10/2020 15:21:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:54              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:21:54             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:21:54             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:21:54             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:21:54             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst_l4src passed
20/10/2020 15:21:54              dut.10.240.183.67: flow flush 0
20/10/2020 15:21:54              dut.10.240.183.67: 
20/10/2020 15:21:54             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst_l4dst================
20/10/2020 15:21:54             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:21:54              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:21:54              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:21:54              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:21:54              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:21:54              dut.10.240.183.67: flow list 0
20/10/2020 15:21:54              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:21:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:55              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb81c6ca2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:21:55             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:21:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xb81c6ca2', '0x2')]
20/10/2020 15:21:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:56              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc28e9f56 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:21:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:21:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xc28e9f56', '0x6')]
20/10/2020 15:21:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:57              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1fc00b93 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:21:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:21:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x1fc00b93', '0x3')]
20/10/2020 15:21:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:21:58              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb81c6ca2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:21:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:21:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xb81c6ca2', '0x2')]
20/10/2020 15:21:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:21:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:22:00              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:22:00              dut.10.240.183.67: flow list 0
20/10/2020 15:22:00              dut.10.240.183.67: 
20/10/2020 15:22:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:01              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:01             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:22:01             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:22:01             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:22:01             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst_l4dst passed
20/10/2020 15:22:01              dut.10.240.183.67: flow flush 0
20/10/2020 15:22:01              dut.10.240.183.67: 
20/10/2020 15:22:01             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src_l4src================
20/10/2020 15:22:01             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:22:01              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:22:01              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:22:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:22:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:22:01              dut.10.240.183.67: flow list 0
20/10/2020 15:22:01              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:22:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:02              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x97cd97ca - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:02             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:22:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x97cd97ca', '0xa')]
20/10/2020 15:22:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:03              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xed5f643e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xed5f643e', '0xe')]
20/10/2020 15:22:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:04              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc44a05e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xc44a05e5', '0x5')]
20/10/2020 15:22:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:05              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x97cd97ca - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:22:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x97cd97ca', '0xa')]
20/10/2020 15:22:05             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:22:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:22:07              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:22:07              dut.10.240.183.67: flow list 0
20/10/2020 15:22:07              dut.10.240.183.67: 
20/10/2020 15:22:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:08              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:08             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:22:08             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:22:08             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:22:08             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src_l4src passed
20/10/2020 15:22:08              dut.10.240.183.67: flow flush 0
20/10/2020 15:22:08              dut.10.240.183.67: 
20/10/2020 15:22:08             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src_l4dst================
20/10/2020 15:22:08             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:22:08              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:22:08              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:22:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:22:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:22:08              dut.10.240.183.67: flow list 0
20/10/2020 15:22:08              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:22:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:09              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x639662d4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:09             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:22:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x639662d4', '0x4')]
20/10/2020 15:22:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:10              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x19049120 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x19049120', '0x0')]
20/10/2020 15:22:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:11              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc44a05e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xc44a05e5', '0x5')]
20/10/2020 15:22:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:12              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x639662d4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:22:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x639662d4', '0x4')]
20/10/2020 15:22:12             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:22:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:22:14              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:22:14              dut.10.240.183.67: flow list 0
20/10/2020 15:22:14              dut.10.240.183.67: 
20/10/2020 15:22:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:15              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:15             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:22:15             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:22:15             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:22:15             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src_l4dst passed
20/10/2020 15:22:15              dut.10.240.183.67: flow flush 0
20/10/2020 15:22:15              dut.10.240.183.67: 
20/10/2020 15:22:15             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_udp_l4src================
20/10/2020 15:22:15             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:22:15              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:22:15              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:22:15              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:22:15              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:22:15              dut.10.240.183.67: flow list 0
20/10/2020 15:22:15              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:22:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:16              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x60d30167 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:16             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:22:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x60d30167', '0x7')]
20/10/2020 15:22:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:17              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x833c911a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x833c911a', '0xa')]
20/10/2020 15:22:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:18              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x60d30167 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:22:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x60d30167', '0x7')]
20/10/2020 15:22:18             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:22:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:22:19              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:22:19              dut.10.240.183.67: flow list 0
20/10/2020 15:22:19              dut.10.240.183.67: 
20/10/2020 15:22:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:21              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:21             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:22:21             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:22:21             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:22:21             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_udp_l4src passed
20/10/2020 15:22:21              dut.10.240.183.67: flow flush 0
20/10/2020 15:22:21              dut.10.240.183.67: 
20/10/2020 15:22:21             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_udp_l4dst================
20/10/2020 15:22:21             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:22:21              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:22:21              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:22:21              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:22:21              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:22:21              dut.10.240.183.67: flow list 0
20/10/2020 15:22:21              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:22:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:22              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xcfa99394 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:22             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:22:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xcfa99394', '0x4')]
20/10/2020 15:22:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:23              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2c4603e9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x2c4603e9', '0x9')]
20/10/2020 15:22:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:24              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xcfa99394 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:22:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xcfa99394', '0x4')]
20/10/2020 15:22:24             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:22:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:22:25              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:22:25              dut.10.240.183.67: flow list 0
20/10/2020 15:22:25              dut.10.240.183.67: 
20/10/2020 15:22:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:26              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:26             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:22:26             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:22:26             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:22:26             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_udp_l4dst passed
20/10/2020 15:22:26              dut.10.240.183.67: flow flush 0
20/10/2020 15:22:27              dut.10.240.183.67: 
20/10/2020 15:22:27             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_udp_all================
20/10/2020 15:22:27             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:22:27              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:22:27              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:22:27              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:22:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:22:27              dut.10.240.183.67: flow list 0
20/10/2020 15:22:27              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:22:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:28              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb8b00b56 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:28             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:22:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xb8b00b56', '0x6')]
20/10/2020 15:22:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:29              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2b1b3b76 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x2b1b3b76', '0x6')]
20/10/2020 15:22:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:30              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x889009bd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x889009bd', '0xd')]
20/10/2020 15:22:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:31              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xe3451553 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xe3451553', '0x3')]
20/10/2020 15:22:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:32              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc222f8a2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xc222f8a2', '0x2')]
20/10/2020 15:22:32             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:22:32              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:22:33              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:22:33              dut.10.240.183.67: flow list 0
20/10/2020 15:22:33              dut.10.240.183.67: 
20/10/2020 15:22:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:35              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:35             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:22:35             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:22:35             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:22:35             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_udp_all passed
20/10/2020 15:22:35              dut.10.240.183.67: flow flush 0
20/10/2020 15:22:35              dut.10.240.183.67: 
20/10/2020 15:22:35             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_udp_l3dst================
20/10/2020 15:22:35             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:22:35              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:22:35              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:22:35              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:22:35              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:22:35              dut.10.240.183.67: flow list 0
20/10/2020 15:22:35              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:22:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:36              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x74392125 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:36             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:22:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x74392125', '0x5')]
20/10/2020 15:22:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:37              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xeabd2d1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:37             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xeabd2d1', '0x1')]
20/10/2020 15:22:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:38              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x74392125 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:38             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:22:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x74392125', '0x5')]
20/10/2020 15:22:38             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:22:38              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:22:39              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:22:39              dut.10.240.183.67: flow list 0
20/10/2020 15:22:39              dut.10.240.183.67: 
20/10/2020 15:22:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:41              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:41             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:22:41             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:22:41             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:22:41             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_udp_l3dst passed
20/10/2020 15:22:41              dut.10.240.183.67: flow flush 0
20/10/2020 15:22:41              dut.10.240.183.67: 
20/10/2020 15:22:41             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_udp_l3src================
20/10/2020 15:22:41             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:22:41              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:22:41              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:22:41              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:22:41              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:22:41              dut.10.240.183.67: flow list 0
20/10/2020 15:22:41              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:22:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:42              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xafb32f53 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:42             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:22:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xafb32f53', '0x3')]
20/10/2020 15:22:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:43              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xafb32f53 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:43             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:22:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xafb32f53', '0x3')]
20/10/2020 15:22:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:44              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xd521dca7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xd521dca7', '0x7')]
20/10/2020 15:22:44             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:22:44              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:22:45              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:22:45              dut.10.240.183.67: flow list 0
20/10/2020 15:22:45              dut.10.240.183.67: 
20/10/2020 15:22:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:46              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:46             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:22:46             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:22:46             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:22:46             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_udp_l3src passed
20/10/2020 15:22:46              dut.10.240.183.67: flow flush 0
20/10/2020 15:22:46              dut.10.240.183.67: 
20/10/2020 15:22:46             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_udp_l3dst_l4src================
20/10/2020 15:22:46             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:22:46              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:22:47              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:22:47              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:22:47              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:22:47              dut.10.240.183.67: flow list 0
20/10/2020 15:22:47              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:22:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:48              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x4c4799bc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:22:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x4c4799bc', '0xc')]
20/10/2020 15:22:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:49              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x36d56a48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x36d56a48', '0x8')]
20/10/2020 15:22:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:50              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1fc00b93 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x1fc00b93', '0x3')]
20/10/2020 15:22:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:51              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x4c4799bc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:22:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x4c4799bc', '0xc')]
20/10/2020 15:22:51             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:22:51              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:22:52              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:22:52              dut.10.240.183.67: flow list 0
20/10/2020 15:22:52              dut.10.240.183.67: 
20/10/2020 15:22:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:53              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:22:53             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:22:53             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:22:53             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:22:53             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_udp_l3dst_l4src passed
20/10/2020 15:22:53              dut.10.240.183.67: flow flush 0
20/10/2020 15:22:53              dut.10.240.183.67: 
20/10/2020 15:22:53             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_udp_l3dst_l4dst================
20/10/2020 15:22:53             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:22:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:22:54              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:22:54              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:22:54              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:22:54              dut.10.240.183.67: flow list 0
20/10/2020 15:22:54              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:22:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:55              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb81c6ca2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:55             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:22:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xb81c6ca2', '0x2')]
20/10/2020 15:22:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:56              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc28e9f56 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xc28e9f56', '0x6')]
20/10/2020 15:22:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:57              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1fc00b93 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:22:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x1fc00b93', '0x3')]
20/10/2020 15:22:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:22:58              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb81c6ca2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:22:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:22:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xb81c6ca2', '0x2')]
20/10/2020 15:22:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:22:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:22:59              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:22:59              dut.10.240.183.67: flow list 0
20/10/2020 15:22:59              dut.10.240.183.67: 
20/10/2020 15:22:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:00              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:00             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:23:00             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:23:00             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:23:00             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_udp_l3dst_l4dst passed
20/10/2020 15:23:00              dut.10.240.183.67: flow flush 0
20/10/2020 15:23:00              dut.10.240.183.67: 
20/10/2020 15:23:00             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_udp_l3src_l4src================
20/10/2020 15:23:00             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:23:00              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:23:01              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:23:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:23:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:23:01              dut.10.240.183.67: flow list 0
20/10/2020 15:23:01              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:23:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:02              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x97cd97ca - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:02             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:23:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x97cd97ca', '0xa')]
20/10/2020 15:23:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:03              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xed5f643e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:23:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xed5f643e', '0xe')]
20/10/2020 15:23:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:04              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc44a05e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:23:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:23:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xc44a05e5', '0x5')]
20/10/2020 15:23:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:05              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x97cd97ca - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:23:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x97cd97ca', '0xa')]
20/10/2020 15:23:05             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:23:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:23:06              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:23:06              dut.10.240.183.67: flow list 0
20/10/2020 15:23:06              dut.10.240.183.67: 
20/10/2020 15:23:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:07              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:07             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:23:07             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:23:07             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:23:07             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_udp_l3src_l4src passed
20/10/2020 15:23:07              dut.10.240.183.67: flow flush 0
20/10/2020 15:23:08              dut.10.240.183.67: 
20/10/2020 15:23:08             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_udp_l3src_l4dst================
20/10/2020 15:23:08             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:23:08              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:23:08              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:23:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:23:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:23:08              dut.10.240.183.67: flow list 0
20/10/2020 15:23:08              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:23:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:09              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x639662d4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:23:09             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:23:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x639662d4', '0x4')]
20/10/2020 15:23:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:10              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x19049120 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:23:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x19049120', '0x0')]
20/10/2020 15:23:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:11              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc44a05e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:23:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:23:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xc44a05e5', '0x5')]
20/10/2020 15:23:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:12              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x639662d4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:23:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:23:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x639662d4', '0x4')]
20/10/2020 15:23:12             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:23:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:23:13              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:23:13              dut.10.240.183.67: flow list 0
20/10/2020 15:23:13              dut.10.240.183.67: 
20/10/2020 15:23:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:14              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:14             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:23:14             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:23:14             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:23:14             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_udp_l3src_l4dst passed
20/10/2020 15:23:14              dut.10.240.183.67: flow flush 0
20/10/2020 15:23:15              dut.10.240.183.67: 
20/10/2020 15:23:15             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_udp_l4src================
20/10/2020 15:23:15             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:23:15              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:23:15              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:23:15              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:23:15              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:23:15              dut.10.240.183.67: flow list 0
20/10/2020 15:23:15              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:23:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:16              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x60d30167 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:16             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:23:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x60d30167', '0x7')]
20/10/2020 15:23:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:17              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x833c911a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:23:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x833c911a', '0xa')]
20/10/2020 15:23:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:18              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x60d30167 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:23:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x60d30167', '0x7')]
20/10/2020 15:23:18             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:23:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:23:19              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:23:19              dut.10.240.183.67: flow list 0
20/10/2020 15:23:19              dut.10.240.183.67: 
20/10/2020 15:23:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:20              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:20             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:23:20             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:23:20             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:23:20             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_udp_l4src passed
20/10/2020 15:23:20              dut.10.240.183.67: flow flush 0
20/10/2020 15:23:20              dut.10.240.183.67: 
20/10/2020 15:23:20             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_udp_l4dst================
20/10/2020 15:23:20             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:23:20              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:23:20              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:23:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:23:21              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:23:21              dut.10.240.183.67: flow list 0
20/10/2020 15:23:21              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:23:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:22              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xcfa99394 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:23:22             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:23:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xcfa99394', '0x4')]
20/10/2020 15:23:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:23              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2c4603e9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:23:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x2c4603e9', '0x9')]
20/10/2020 15:23:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:24              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xcfa99394 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:23:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:23:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xcfa99394', '0x4')]
20/10/2020 15:23:24             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:23:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:23:25              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:23:25              dut.10.240.183.67: flow list 0
20/10/2020 15:23:25              dut.10.240.183.67: 
20/10/2020 15:23:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:26              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:26             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:23:26             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:23:26             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:23:26             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_udp_l4dst passed
20/10/2020 15:23:26              dut.10.240.183.67: flow flush 0
20/10/2020 15:23:26              dut.10.240.183.67: 
20/10/2020 15:23:26             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_udp_all================
20/10/2020 15:23:26             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:23:26              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:23:26              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:23:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:23:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:23:26              dut.10.240.183.67: flow list 0
20/10/2020 15:23:27              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:23:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:28              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb8b00b56 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:23:28             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:23:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xb8b00b56', '0x6')]
20/10/2020 15:23:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:29              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2b1b3b76 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:23:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:23:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x2b1b3b76', '0x6')]
20/10/2020 15:23:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:30              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x889009bd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:23:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:23:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x889009bd', '0xd')]
20/10/2020 15:23:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:31              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xe3451553 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:23:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:23:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xe3451553', '0x3')]
20/10/2020 15:23:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:32              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc222f8a2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:23:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:23:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xc222f8a2', '0x2')]
20/10/2020 15:23:32             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:23:32              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:23:33              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:23:33              dut.10.240.183.67: flow list 0
20/10/2020 15:23:33              dut.10.240.183.67: 
20/10/2020 15:23:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:34              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:34             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:23:34             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:23:34             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:23:34             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_udp_all passed
20/10/2020 15:23:34              dut.10.240.183.67: flow flush 0
20/10/2020 15:23:34              dut.10.240.183.67: 
20/10/2020 15:23:34             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l4src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_udp_l4dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv4_udp_all': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_udp_l3dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_udp_l3src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_udp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_udp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_udp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_udp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_udp_l4src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_udp_l4dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_udp_all': 'passed'}
20/10/2020 15:23:34             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:23:34             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_udp Result PASSED:
20/10/2020 15:23:34              dut.10.240.183.67: flow flush 0
20/10/2020 15:23:36              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:23:36              dut.10.240.183.67: clear port stats all
20/10/2020 15:23:37              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:23:37              dut.10.240.183.67: stop
20/10/2020 15:23:37              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:23:37             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_udp_symmetric Begin
20/10/2020 15:23:37              dut.10.240.183.67: 
20/10/2020 15:23:37                         tester: 
20/10/2020 15:23:37              dut.10.240.183.67: start
20/10/2020 15:23:37              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:23:37              dut.10.240.183.67: quit
20/10/2020 15:23:39              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:23:39              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:23:40              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:23:50              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:23:50              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:23:50              dut.10.240.183.67: set verbose 1
20/10/2020 15:23:50              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:23:50              dut.10.240.183.67: show port info all
20/10/2020 15:23:50              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:23:50              dut.10.240.183.67: start
20/10/2020 15:23:50              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:23:50             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_udp_symmetric================
20/10/2020 15:23:50             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:23:50              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:23:50              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:23:50              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:23:50              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:23:50              dut.10.240.183.67: flow list 0
20/10/2020 15:23:50              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:23:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:51              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xbf20795a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:51             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:23:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xbf20795a', '0xa')]
20/10/2020 15:23:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:53              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xbf20795a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:53             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:23:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xbf20795a', '0xa')]
20/10/2020 15:23:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:54              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xbf20795a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:23:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xbf20795a', '0xa')]
20/10/2020 15:23:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:55              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xbf20795a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:23:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xbf20795a', '0xa')]
20/10/2020 15:23:55             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:23:55              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:23:56              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:23:56              dut.10.240.183.67: flow list 0
20/10/2020 15:23:56              dut.10.240.183.67: 
20/10/2020 15:23:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:57              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:57             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:23:57             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:23:57             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:23:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:58              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:58             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:23:58             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:23:58             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:23:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:23:59              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:23:59             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:23:59             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:23:59             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:23:59             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_udp_symmetric passed
20/10/2020 15:23:59              dut.10.240.183.67: flow flush 0
20/10/2020 15:23:59              dut.10.240.183.67: 
20/10/2020 15:23:59             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_udp_symmetric================
20/10/2020 15:23:59             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:23:59              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:23:59              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:23:59              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:23:59              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:23:59              dut.10.240.183.67: flow list 0
20/10/2020 15:24:00              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:24:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:01              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xbf20795a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:01             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:24:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xbf20795a', '0xa')]
20/10/2020 15:24:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:02              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xbf20795a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xbf20795a', '0xa')]
20/10/2020 15:24:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:03              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xbf20795a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xbf20795a', '0xa')]
20/10/2020 15:24:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:04              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xbf20795a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:04             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xbf20795a', '0xa')]
20/10/2020 15:24:04             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:24:04              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:24:05              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:24:05              dut.10.240.183.67: flow list 0
20/10/2020 15:24:05              dut.10.240.183.67: 
20/10/2020 15:24:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:06              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:06             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:24:06             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:24:06             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:24:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:07              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:07             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:24:07             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:24:07             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:24:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:09              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:09             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:24:09             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:24:09             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:24:09             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_udp_symmetric passed
20/10/2020 15:24:09              dut.10.240.183.67: flow flush 0
20/10/2020 15:24:09              dut.10.240.183.67: 
20/10/2020 15:24:09             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_dl_ipv4_udp_symmetric': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_udp_symmetric': 'passed'}
20/10/2020 15:24:09             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:24:09             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_udp_symmetric Result PASSED:
20/10/2020 15:24:09              dut.10.240.183.67: flow flush 0
20/10/2020 15:24:10              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:24:10              dut.10.240.183.67: clear port stats all
20/10/2020 15:24:11              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:24:11              dut.10.240.183.67: stop
20/10/2020 15:24:11              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:24:11             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl Begin
20/10/2020 15:24:11              dut.10.240.183.67: 
20/10/2020 15:24:11                         tester: 
20/10/2020 15:24:11              dut.10.240.183.67: start
20/10/2020 15:24:11              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:24:11             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src================
20/10/2020 15:24:11             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:24:11              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:24:11              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:24:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:24:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:24:11              dut.10.240.183.67: flow list 0
20/10/2020 15:24:11              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:24:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:13              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc2c4b4c8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:13             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:24:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2c4b4c8', '0x8')]
20/10/2020 15:24:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:14              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc2c4b4c8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:14             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2c4b4c8', '0x8')]
20/10/2020 15:24:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:15              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2a169c4b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:24:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x2a169c4b', '0xb')]
20/10/2020 15:24:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:16              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc2c4b4c8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:16             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2c4b4c8', '0x8')]
20/10/2020 15:24:16             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:24:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:24:17              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:24:17              dut.10.240.183.67: flow list 0
20/10/2020 15:24:17              dut.10.240.183.67: 
20/10/2020 15:24:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:18              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:18             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:24:18             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:24:18             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:24:18             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src passed
20/10/2020 15:24:18              dut.10.240.183.67: flow flush 0
20/10/2020 15:24:18              dut.10.240.183.67: 
20/10/2020 15:24:18             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst================
20/10/2020 15:24:18             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:24:18              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:24:18              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:24:18              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:24:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:24:18              dut.10.240.183.67: flow list 0
20/10/2020 15:24:18              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:24:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:20              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x79f8765c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:20             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:24:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x79f8765c', '0xc')]
20/10/2020 15:24:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:21              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x79f8765c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x79f8765c', '0xc')]
20/10/2020 15:24:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:22              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x912a5edf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:24:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x912a5edf', '0xf')]
20/10/2020 15:24:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:23              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x79f8765c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:23             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x79f8765c', '0xc')]
20/10/2020 15:24:23             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:24:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:24:24              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:24:24              dut.10.240.183.67: flow list 0
20/10/2020 15:24:24              dut.10.240.183.67: 
20/10/2020 15:24:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:25              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:25             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:24:25             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:24:25             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:24:25             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst passed
20/10/2020 15:24:25              dut.10.240.183.67: flow flush 0
20/10/2020 15:24:25              dut.10.240.183.67: 
20/10/2020 15:24:25             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4dst================
20/10/2020 15:24:25             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:24:25              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:24:25              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:24:25              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:24:25              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:24:25              dut.10.240.183.67: flow list 0
20/10/2020 15:24:26              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:24:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:27              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa8a7fedb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:27             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:24:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xa8a7fedb', '0xb')]
20/10/2020 15:24:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:28              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc7502aea - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:24:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xc7502aea', '0xa')]
20/10/2020 15:24:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:29              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x4075d658 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:24:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x4075d658', '0x8')]
20/10/2020 15:24:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:30              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa8a7fedb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:30             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xa8a7fedb', '0xb')]
20/10/2020 15:24:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:31              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa8a7fedb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:31             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xa8a7fedb', '0xb')]
20/10/2020 15:24:31             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:24:31              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:24:32              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:24:32              dut.10.240.183.67: flow list 0
20/10/2020 15:24:32              dut.10.240.183.67: 
20/10/2020 15:24:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:33              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:33             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:24:33             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:24:33             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:24:33             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4dst passed
20/10/2020 15:24:33              dut.10.240.183.67: flow flush 0
20/10/2020 15:24:33              dut.10.240.183.67: 
20/10/2020 15:24:33             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4src================
20/10/2020 15:24:33             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:24:33              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:24:33              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:24:33              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:24:34              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:24:34              dut.10.240.183.67: flow list 0
20/10/2020 15:24:34              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:24:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:35              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x90838b79 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:24:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x90838b79', '0x9')]
20/10/2020 15:24:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:36              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x3de0b3e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:24:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:24:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x3de0b3e5', '0x5')]
20/10/2020 15:24:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:37              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x7851a3fa - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:37             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:24:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x7851a3fa', '0xa')]
20/10/2020 15:24:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:38              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x90838b79 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:38             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x90838b79', '0x9')]
20/10/2020 15:24:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:39              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x90838b79 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:39             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x90838b79', '0x9')]
20/10/2020 15:24:39             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:24:39              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:24:40              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:24:40              dut.10.240.183.67: flow list 0
20/10/2020 15:24:40              dut.10.240.183.67: 
20/10/2020 15:24:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:41              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:41             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:24:41             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:24:41             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:24:41             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4src passed
20/10/2020 15:24:41              dut.10.240.183.67: flow flush 0
20/10/2020 15:24:42              dut.10.240.183.67: 
20/10/2020 15:24:42             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4src================
20/10/2020 15:24:42             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:24:42              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:24:42              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:24:42              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:24:42              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:24:42              dut.10.240.183.67: flow list 0
20/10/2020 15:24:42              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:24:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:43              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2bbf49ed - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:24:43             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:24:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x2bbf49ed', '0xd')]
20/10/2020 15:24:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:44              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x86dc7171 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:24:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x86dc7171', '0x1')]
20/10/2020 15:24:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:45              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc36d616e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:24:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xc36d616e', '0xe')]
20/10/2020 15:24:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:46              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2bbf49ed - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:24:46             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x2bbf49ed', '0xd')]
20/10/2020 15:24:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:47              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2bbf49ed - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:24:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x2bbf49ed', '0xd')]
20/10/2020 15:24:47             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:24:47              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:24:48              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:24:48              dut.10.240.183.67: flow list 0
20/10/2020 15:24:48              dut.10.240.183.67: 
20/10/2020 15:24:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:50              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:50             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:24:50             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:24:50             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:24:50             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4src passed
20/10/2020 15:24:50              dut.10.240.183.67: flow flush 0
20/10/2020 15:24:50              dut.10.240.183.67: 
20/10/2020 15:24:50             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4dst================
20/10/2020 15:24:50             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:24:50              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:24:50              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:24:50              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:24:50              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:24:50              dut.10.240.183.67: flow list 0
20/10/2020 15:24:50              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:24:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:51              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x139b3c4f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:51             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:24:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x139b3c4f', '0xf')]
20/10/2020 15:24:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:52              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x7c6ce87e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:52             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:24:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x7c6ce87e', '0xe')]
20/10/2020 15:24:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:53              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xfb4914cc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:24:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xfb4914cc', '0xc')]
20/10/2020 15:24:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:54              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x139b3c4f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x139b3c4f', '0xf')]
20/10/2020 15:24:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:55              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x139b3c4f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:24:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x139b3c4f', '0xf')]
20/10/2020 15:24:55             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:24:55              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:24:57              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:24:57              dut.10.240.183.67: flow list 0
20/10/2020 15:24:57              dut.10.240.183.67: 
20/10/2020 15:24:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:58              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:58             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:24:58             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:24:58             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:24:58             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4dst passed
20/10/2020 15:24:58              dut.10.240.183.67: flow flush 0
20/10/2020 15:24:58              dut.10.240.183.67: 
20/10/2020 15:24:58             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l4src_only================
20/10/2020 15:24:58             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:24:58              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:24:58              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:24:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:24:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:24:58              dut.10.240.183.67: flow list 0
20/10/2020 15:24:58              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:24:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:24:59              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1ecd16fa - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:24:59             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:24:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x1ecd16fa', '0xa')]
20/10/2020 15:24:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:00              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc3fa80d7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:25:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xc3fa80d7', '0x7')]
20/10/2020 15:25:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:01              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1ecd16fa - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:25:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x1ecd16fa', '0xa')]
20/10/2020 15:25:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:02              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1ecd16fa - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:25:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x1ecd16fa', '0xa')]
20/10/2020 15:25:02             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:25:02              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:25:04              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:25:04              dut.10.240.183.67: flow list 0
20/10/2020 15:25:04              dut.10.240.183.67: 
20/10/2020 15:25:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:05              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:05             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:25:05             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:25:05             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:25:05             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l4src_only passed
20/10/2020 15:25:05              dut.10.240.183.67: flow flush 0
20/10/2020 15:25:05              dut.10.240.183.67: 
20/10/2020 15:25:05             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l4dst_only================
20/10/2020 15:25:05             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:25:05              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:25:05              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:25:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:25:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:25:05              dut.10.240.183.67: flow list 0
20/10/2020 15:25:05              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:25:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:06              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xd425c4d2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:25:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:25:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xd425c4d2', '0x2')]
20/10/2020 15:25:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:07              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa68ee9c3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:25:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:25:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xa68ee9c3', '0x3')]
20/10/2020 15:25:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:08              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xd425c4d2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:25:08             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:25:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xd425c4d2', '0x2')]
20/10/2020 15:25:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:09              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xd425c4d2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:25:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:25:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xd425c4d2', '0x2')]
20/10/2020 15:25:09             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:25:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:25:11              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:25:11              dut.10.240.183.67: flow list 0
20/10/2020 15:25:11              dut.10.240.183.67: 
20/10/2020 15:25:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:12              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:12             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:25:12             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:25:12             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:25:12             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l4dst_only passed
20/10/2020 15:25:12              dut.10.240.183.67: flow flush 0
20/10/2020 15:25:12              dut.10.240.183.67: 
20/10/2020 15:25:12             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp================
20/10/2020 15:25:12             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:25:12              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:25:12              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:25:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:25:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:25:12              dut.10.240.183.67: flow list 0
20/10/2020 15:25:12              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:25:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:13              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xe1417e54 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:25:13             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:25:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xe1417e54', '0x4')]
20/10/2020 15:25:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:14              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xbed99bbc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:25:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xbed99bbc', '0xc')]
20/10/2020 15:25:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:15              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x4a9967a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:25:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x4a9967a', '0xa')]
20/10/2020 15:25:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:16              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xf9f64843 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:25:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:25:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9f64843', '0x3')]
20/10/2020 15:25:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:18              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x99356d7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:25:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x99356d7', '0x7')]
20/10/2020 15:25:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:19              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xe1417e54 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:25:19             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:25:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xe1417e54', '0x4')]
20/10/2020 15:25:19             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:25:19              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:25:20              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:25:20              dut.10.240.183.67: flow list 0
20/10/2020 15:25:20              dut.10.240.183.67: 
20/10/2020 15:25:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:21              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:21             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:25:21             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:25:21             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:25:21             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp passed
20/10/2020 15:25:21              dut.10.240.183.67: flow flush 0
20/10/2020 15:25:21              dut.10.240.183.67: 
20/10/2020 15:25:21             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l4src_only': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp_l4dst_only': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_udp': 'passed'}
20/10/2020 15:25:21             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:25:21             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl Result PASSED:
20/10/2020 15:25:21              dut.10.240.183.67: flow flush 0
20/10/2020 15:25:22              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:25:22              dut.10.240.183.67: clear port stats all
20/10/2020 15:25:23              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:25:23              dut.10.240.183.67: stop
20/10/2020 15:25:23              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:25:23             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl_symmetric Begin
20/10/2020 15:25:24              dut.10.240.183.67: 
20/10/2020 15:25:24                         tester: 
20/10/2020 15:25:24              dut.10.240.183.67: start
20/10/2020 15:25:24              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:25:24              dut.10.240.183.67: quit
20/10/2020 15:25:25              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:25:25              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:25:26              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:25:36              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:25:36              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:25:36              dut.10.240.183.67: set verbose 1
20/10/2020 15:25:37              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:25:37              dut.10.240.183.67: show port info all
20/10/2020 15:25:37              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:25:37              dut.10.240.183.67: start
20/10/2020 15:25:37              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:25:37             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl_symmetric================
20/10/2020 15:25:37             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:25:37              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:25:37              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:25:37              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:25:37              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:25:37              dut.10.240.183.67: flow list 0
20/10/2020 15:25:37              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:25:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:38              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x3e3af31f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:38             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-dl'}

20/10/2020 15:25:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e3af31f', '0xf')]
20/10/2020 15:25:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:39              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x3e3af31f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:39             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:25:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e3af31f', '0xf')]
20/10/2020 15:25:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:40              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x3e3af31f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:25:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e3af31f', '0xf')]
20/10/2020 15:25:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:41              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x3e3af31f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:41             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:25:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e3af31f', '0xf')]
20/10/2020 15:25:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:42              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x3e3af31f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:42             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-ul'}

20/10/2020 15:25:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e3af31f', '0xf')]
20/10/2020 15:25:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:43              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x3e3af31f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:43             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:25:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e3af31f', '0xf')]
20/10/2020 15:25:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:45              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x3e3af31f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:45             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:25:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e3af31f', '0xf')]
20/10/2020 15:25:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:46              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x3e3af31f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:46             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:25:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e3af31f', '0xf')]
20/10/2020 15:25:46             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:25:46              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:25:47              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:25:47              dut.10.240.183.67: flow list 0
20/10/2020 15:25:47              dut.10.240.183.67: 
20/10/2020 15:25:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:48              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:48             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:25:48             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:25:48             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:25:48             TestCVLIAVFRSSGTPU: action: udp-dl

20/10/2020 15:25:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:49              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:49             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:25:49             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:25:49             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:25:49             TestCVLIAVFRSSGTPU: action: udp-ul

20/10/2020 15:25:49             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl_symmetric passed
20/10/2020 15:25:49              dut.10.240.183.67: flow flush 0
20/10/2020 15:25:49              dut.10.240.183.67: 
20/10/2020 15:25:49             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl_symmetric': 'passed'}
20/10/2020 15:25:49             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:25:49             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_udp_without_ul_dl_symmetric Result PASSED:
20/10/2020 15:25:49              dut.10.240.183.67: flow flush 0
20/10/2020 15:25:50              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:25:50              dut.10.240.183.67: clear port stats all
20/10/2020 15:25:52              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:25:52              dut.10.240.183.67: stop
20/10/2020 15:25:52              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:25:52             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_without_ul_dl Begin
20/10/2020 15:25:52              dut.10.240.183.67: 
20/10/2020 15:25:52                         tester: 
20/10/2020 15:25:52              dut.10.240.183.67: start
20/10/2020 15:25:52              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:25:52             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst================
20/10/2020 15:25:52             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:25:52              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:25:52              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:25:52              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:25:52              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:25:52              dut.10.240.183.67: flow list 0
20/10/2020 15:25:52              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:25:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:53              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x2173661 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:53             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:25:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x2173661', '0x1')]
20/10/2020 15:25:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:54              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x7e09693d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:25:54             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:25:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e09693d', '0xd')]
20/10/2020 15:25:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:55              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x2173661 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:25:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x2173661', '0x1')]
20/10/2020 15:25:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:56              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x2173661 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:56             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:25:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x2173661', '0x1')]
20/10/2020 15:25:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:58              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x7e09693d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:25:58             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:25:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e09693d', '0xd')]
20/10/2020 15:25:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:25:59              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x2173661 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:25:59             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:25:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x2173661', '0x1')]
20/10/2020 15:25:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:00              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x2173661 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:00             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:26:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x2173661', '0x1')]
20/10/2020 15:26:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:01              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x7e09693d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:26:01             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e09693d', '0xd')]
20/10/2020 15:26:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:02              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x2173661 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:26:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x2173661', '0x1')]
20/10/2020 15:26:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:03              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2173661 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:03             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:26:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x2173661', '0x1')]
20/10/2020 15:26:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:04              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x7e09693d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:26:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e09693d', '0xd')]
20/10/2020 15:26:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:05              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2173661 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:26:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x2173661', '0x1')]
20/10/2020 15:26:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:06              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2173661 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:26:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x2173661', '0x1')]
20/10/2020 15:26:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:08              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x7e09693d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:26:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e09693d', '0xd')]
20/10/2020 15:26:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:09              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2173661 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:26:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x2173661', '0x1')]
20/10/2020 15:26:09             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:26:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:26:10              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:26:10              dut.10.240.183.67: flow list 0
20/10/2020 15:26:10              dut.10.240.183.67: 
20/10/2020 15:26:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:11              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:11             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:26:11             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:26:11             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:26:11             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst passed
20/10/2020 15:26:11              dut.10.240.183.67: flow flush 0
20/10/2020 15:26:11              dut.10.240.183.67: 
20/10/2020 15:26:11             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src================
20/10/2020 15:26:11             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:26:11              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:26:11              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:26:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:26:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:26:11              dut.10.240.183.67: flow list 0
20/10/2020 15:26:11              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:26:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:12              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x1367c43b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:12             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:26:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x1367c43b', '0xb')]
20/10/2020 15:26:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:13              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6f799b67 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x6f799b67', '0x7')]
20/10/2020 15:26:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:15              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x1367c43b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:15             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:26:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x1367c43b', '0xb')]
20/10/2020 15:26:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:16              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x1367c43b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:16             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:26:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x1367c43b', '0xb')]
20/10/2020 15:26:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:17              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6f799b67 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x6f799b67', '0x7')]
20/10/2020 15:26:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:18              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x1367c43b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:26:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x1367c43b', '0xb')]
20/10/2020 15:26:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:19              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x1367c43b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:19             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:26:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x1367c43b', '0xb')]
20/10/2020 15:26:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:20              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6f799b67 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x6f799b67', '0x7')]
20/10/2020 15:26:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:21              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x1367c43b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:26:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x1367c43b', '0xb')]
20/10/2020 15:26:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:22              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1367c43b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:22             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:26:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x1367c43b', '0xb')]
20/10/2020 15:26:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:23              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x6f799b67 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x6f799b67', '0x7')]
20/10/2020 15:26:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:24              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1367c43b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:26:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x1367c43b', '0xb')]
20/10/2020 15:26:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:26              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1367c43b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:26             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:26:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x1367c43b', '0xb')]
20/10/2020 15:26:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:27              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x6f799b67 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x6f799b67', '0x7')]
20/10/2020 15:26:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:28              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1367c43b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:28             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:26:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x1367c43b', '0xb')]
20/10/2020 15:26:28             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:26:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:26:29              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:26:29              dut.10.240.183.67: flow list 0
20/10/2020 15:26:29              dut.10.240.183.67: 
20/10/2020 15:26:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:30              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:30             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:26:30             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:26:30             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:26:30             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src passed
20/10/2020 15:26:30              dut.10.240.183.67: flow flush 0
20/10/2020 15:26:30              dut.10.240.183.67: 
20/10/2020 15:26:30             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv4_all================
20/10/2020 15:26:30             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:26:30              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 15:26:30              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:26:30              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 15:26:30              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:26:30              dut.10.240.183.67: flow list 0
20/10/2020 15:26:30              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:26:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:32              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xdc5a02d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:26:32             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:26:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc5a02d', '0xd')]
20/10/2020 15:26:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:33              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x613117a0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x613117a0', '0x0')]
20/10/2020 15:26:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:34              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x71dbff71 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x71dbff71', '0x1')]
20/10/2020 15:26:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:35              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x1d2f48fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:35             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x1d2f48fc', '0xc')]
20/10/2020 15:26:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:36              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xdc5a02d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:26:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:26:36             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc5a02d', '0xd')]
20/10/2020 15:26:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:37              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xdc5a02d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:26:37             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:26:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc5a02d', '0xd')]
20/10/2020 15:26:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:38              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x613117a0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x613117a0', '0x0')]
20/10/2020 15:26:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:39              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x71dbff71 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x71dbff71', '0x1')]
20/10/2020 15:26:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:40              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x1d2f48fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:40             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x1d2f48fc', '0xc')]
20/10/2020 15:26:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:41              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xdc5a02d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:26:41             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:26:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc5a02d', '0xd')]
20/10/2020 15:26:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:43              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xdc5a02d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:26:43             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:26:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc5a02d', '0xd')]
20/10/2020 15:26:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:44              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x613117a0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x613117a0', '0x0')]
20/10/2020 15:26:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:45              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x71dbff71 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x71dbff71', '0x1')]
20/10/2020 15:26:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:46              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x1d2f48fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x1d2f48fc', '0xc')]
20/10/2020 15:26:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:47              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xdc5a02d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:26:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:26:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc5a02d', '0xd')]
20/10/2020 15:26:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:48              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xdc5a02d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:26:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:26:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc5a02d', '0xd')]
20/10/2020 15:26:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:49              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x613117a0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x613117a0', '0x0')]
20/10/2020 15:26:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:50              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x71dbff71 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x71dbff71', '0x1')]
20/10/2020 15:26:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:51              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1d2f48fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x1d2f48fc', '0xc')]
20/10/2020 15:26:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:52              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xdc5a02d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:26:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:26:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc5a02d', '0xd')]
20/10/2020 15:26:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:54              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xdc5a02d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:26:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:26:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc5a02d', '0xd')]
20/10/2020 15:26:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:55              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x613117a0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x613117a0', '0x0')]
20/10/2020 15:26:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:56              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x71dbff71 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x71dbff71', '0x1')]
20/10/2020 15:26:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:57              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1d2f48fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:26:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:26:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x1d2f48fc', '0xc')]
20/10/2020 15:26:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:26:58              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xdc5a02d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:26:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:26:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc5a02d', '0xd')]
20/10/2020 15:26:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:26:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:26:59              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:26:59              dut.10.240.183.67: flow list 0
20/10/2020 15:26:59              dut.10.240.183.67: 
20/10/2020 15:26:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:00              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:00             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:27:00             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:27:00             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:27:00             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv4_all passed
20/10/2020 15:27:00              dut.10.240.183.67: flow flush 0
20/10/2020 15:27:00              dut.10.240.183.67: 
20/10/2020 15:27:00             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_l3src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv4_all': 'passed'}
20/10/2020 15:27:00             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:27:00             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_without_ul_dl Result PASSED:
20/10/2020 15:27:00              dut.10.240.183.67: flow flush 0
20/10/2020 15:27:02              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:27:02              dut.10.240.183.67: clear port stats all
20/10/2020 15:27:03              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:27:03              dut.10.240.183.67: stop
20/10/2020 15:27:03              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:27:03             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_without_ul_dl_symmetric Begin
20/10/2020 15:27:03              dut.10.240.183.67: 
20/10/2020 15:27:03                         tester: 
20/10/2020 15:27:03              dut.10.240.183.67: start
20/10/2020 15:27:03              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:27:03              dut.10.240.183.67: quit
20/10/2020 15:27:05              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:27:05              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:27:06              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:27:16              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:27:16              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:27:16              dut.10.240.183.67: set verbose 1
20/10/2020 15:27:16              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:27:16              dut.10.240.183.67: show port info all
20/10/2020 15:27:16              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:27:16              dut.10.240.183.67: start
20/10/2020 15:27:16              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:27:16             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ipv4_without_ul_dl_symmetric================
20/10/2020 15:27:16             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:27:16              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:27:16              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:27:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:27:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:27:16              dut.10.240.183.67: flow list 0
20/10/2020 15:27:16              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:27:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:17              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x51176c21 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:17             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 15:27:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x51176c21', '0x1')]
20/10/2020 15:27:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:19              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x51176c21 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:19             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:27:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x51176c21', '0x1')]
20/10/2020 15:27:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:20              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x51176c21 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:20             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 15:27:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x51176c21', '0x1')]
20/10/2020 15:27:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:21              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x51176c21 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:27:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x51176c21', '0x1')]
20/10/2020 15:27:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:22              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x51176c21 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:22             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 15:27:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x51176c21', '0x1')]
20/10/2020 15:27:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:23              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x51176c21 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:23             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:27:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x51176c21', '0x1')]
20/10/2020 15:27:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:24              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x51176c21 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:24             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 15:27:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x51176c21', '0x1')]
20/10/2020 15:27:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:25              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x51176c21 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:25             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:27:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x51176c21', '0x1')]
20/10/2020 15:27:25             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:27:25              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:27:26              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:27:26              dut.10.240.183.67: flow list 0
20/10/2020 15:27:26              dut.10.240.183.67: 
20/10/2020 15:27:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:27              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:27             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 15:27:27             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:27:27             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:27:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:29              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:29             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 15:27:29             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:27:29             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:27:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:30              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:30             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 15:27:30             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:27:30             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:27:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:31              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:31             TestCVLIAVFRSSGTPU: action: ipv4-udp

20/10/2020 15:27:31             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:27:31             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:27:31             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:27:31             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ipv4_without_ul_dl_symmetric passed
20/10/2020 15:27:31              dut.10.240.183.67: flow flush 0
20/10/2020 15:27:31              dut.10.240.183.67: 
20/10/2020 15:27:31             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_ipv4_without_ul_dl_symmetric': 'passed'}
20/10/2020 15:27:31             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:27:31             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv4_without_ul_dl_symmetric Result PASSED:
20/10/2020 15:27:31              dut.10.240.183.67: flow flush 0
20/10/2020 15:27:32              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:27:32              dut.10.240.183.67: clear port stats all
20/10/2020 15:27:33              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:27:33              dut.10.240.183.67: stop
20/10/2020 15:27:33              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:27:33             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6 Begin
20/10/2020 15:27:33              dut.10.240.183.67: 
20/10/2020 15:27:33                         tester: 
20/10/2020 15:27:33              dut.10.240.183.67: start
20/10/2020 15:27:34              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:27:34             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_l3dst================
20/10/2020 15:27:34             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:27:34              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:27:34              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:27:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:27:34              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:27:34              dut.10.240.183.67: flow list 0
20/10/2020 15:27:34              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 15:27:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:35              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:27:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:27:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:36              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xc4349e0d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:27:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:27:36             TestCVLIAVFRSSGTPU: hash_infos: [('0xc4349e0d', '0xd')]
20/10/2020 15:27:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:37              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:27:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:27:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:38              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:27:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:27:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:39              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc4349e0d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:27:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:27:39             TestCVLIAVFRSSGTPU: hash_infos: [('0xc4349e0d', '0xd')]
20/10/2020 15:27:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:40              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:27:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:27:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:41              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:27:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:27:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:43              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc4349e0d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:27:43             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:27:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xc4349e0d', '0xd')]
20/10/2020 15:27:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:44              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:27:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:27:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:45              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:45             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:27:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:27:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:46              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc4349e0d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:27:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:27:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xc4349e0d', '0xd')]
20/10/2020 15:27:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:47              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:27:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:27:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:48              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:27:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:27:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:49              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xc4349e0d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:27:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:27:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xc4349e0d', '0xd')]
20/10/2020 15:27:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:50              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:27:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:27:50             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:27:50              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:27:51              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:27:51              dut.10.240.183.67: flow list 0
20/10/2020 15:27:52              dut.10.240.183.67: 
20/10/2020 15:27:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:53              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:27:53             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:27:53             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:27:53             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:27:53             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_l3dst passed
20/10/2020 15:27:53              dut.10.240.183.67: flow flush 0
20/10/2020 15:27:53              dut.10.240.183.67: 
20/10/2020 15:27:53             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_l3src================
20/10/2020 15:27:53             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:27:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 15:27:53              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:27:53              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 15:27:53              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:27:53              dut.10.240.183.67: flow list 0
20/10/2020 15:27:53              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 15:27:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:54              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:27:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:27:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:27:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:55              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:27:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:27:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:27:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:56              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xd7f9bd82 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:27:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:27:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7f9bd82', '0x2')]
20/10/2020 15:27:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:57              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:27:57             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:27:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:27:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:27:58              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:27:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:27:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:27:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:00              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd7f9bd82 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7f9bd82', '0x2')]
20/10/2020 15:28:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:01              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:01             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:28:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:02              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:28:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:28:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:03              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd7f9bd82 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7f9bd82', '0x2')]
20/10/2020 15:28:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:04              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:04             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:28:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:05              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:28:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:28:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:06              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd7f9bd82 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:06             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7f9bd82', '0x2')]
20/10/2020 15:28:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:07              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:07             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:28:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:08              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:08             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:28:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:28:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:09              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xd7f9bd82 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7f9bd82', '0x2')]
20/10/2020 15:28:09             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:28:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:28:11              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:28:11              dut.10.240.183.67: flow list 0
20/10/2020 15:28:11              dut.10.240.183.67: 
20/10/2020 15:28:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:12              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:12             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:28:12             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:28:12             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:28:12             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_l3src passed
20/10/2020 15:28:12              dut.10.240.183.67: flow flush 0
20/10/2020 15:28:12              dut.10.240.183.67: 
20/10/2020 15:28:12             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_all================
20/10/2020 15:28:12             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:28:12              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 15:28:12              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:28:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 15:28:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:28:12              dut.10.240.183.67: flow list 0
20/10/2020 15:28:12              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 15:28:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:13              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xc6be5c07 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:13             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xc6be5c07', '0x7')]
20/10/2020 15:28:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:14              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xfb035d58 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xfb035d58', '0x8')]
20/10/2020 15:28:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:15              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xac851406 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xac851406', '0x6')]
20/10/2020 15:28:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:17              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x91381559 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x91381559', '0x9')]
20/10/2020 15:28:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:18              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc6be5c07 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:18             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xc6be5c07', '0x7')]
20/10/2020 15:28:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:19              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xfb035d58 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:19             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xfb035d58', '0x8')]
20/10/2020 15:28:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:20              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xac851406 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xac851406', '0x6')]
20/10/2020 15:28:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:21              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x91381559 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:21             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x91381559', '0x9')]
20/10/2020 15:28:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:22              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc6be5c07 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:22             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xc6be5c07', '0x7')]
20/10/2020 15:28:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:23              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xfb035d58 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xfb035d58', '0x8')]
20/10/2020 15:28:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:24              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xac851406 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xac851406', '0x6')]
20/10/2020 15:28:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:25              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x91381559 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x91381559', '0x9')]
20/10/2020 15:28:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:26              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc6be5c07 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:26             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xc6be5c07', '0x7')]
20/10/2020 15:28:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:28              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xfb035d58 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xfb035d58', '0x8')]
20/10/2020 15:28:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:29              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xac851406 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xac851406', '0x6')]
20/10/2020 15:28:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:30              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x91381559 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x91381559', '0x9')]
20/10/2020 15:28:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:31              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xc6be5c07 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:31             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xc6be5c07', '0x7')]
20/10/2020 15:28:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:32              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xfb035d58 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xfb035d58', '0x8')]
20/10/2020 15:28:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:33              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xac851406 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xac851406', '0x6')]
20/10/2020 15:28:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:34              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x91381559 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x91381559', '0x9')]
20/10/2020 15:28:34             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:28:34              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:28:35              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:28:35              dut.10.240.183.67: flow list 0
20/10/2020 15:28:35              dut.10.240.183.67: 
20/10/2020 15:28:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:37             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:28:37             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:28:37             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:28:37             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_all passed
20/10/2020 15:28:37              dut.10.240.183.67: flow flush 0
20/10/2020 15:28:37              dut.10.240.183.67: 
20/10/2020 15:28:37             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_l3dst================
20/10/2020 15:28:37             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:28:37              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:28:37              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:28:37              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:28:37              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:28:37              dut.10.240.183.67: flow list 0
20/10/2020 15:28:37              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 15:28:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:38              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:28:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:39              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xc4349e0d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:39             TestCVLIAVFRSSGTPU: hash_infos: [('0xc4349e0d', '0xd')]
20/10/2020 15:28:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:40              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:28:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:28:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:41              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:28:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:42              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc4349e0d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xc4349e0d', '0xd')]
20/10/2020 15:28:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:43              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:43             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:28:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:28:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:45              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:45             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:28:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:46              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc4349e0d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xc4349e0d', '0xd')]
20/10/2020 15:28:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:47              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:28:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:28:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:48              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:28:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:49              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc4349e0d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xc4349e0d', '0xd')]
20/10/2020 15:28:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:50              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:28:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:28:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:51              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:51             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:28:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:52              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xc4349e0d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:52             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xc4349e0d', '0xd')]
20/10/2020 15:28:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:53              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x2742b07a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:53             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:28:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x2742b07a', '0xa')]
20/10/2020 15:28:53             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:28:53              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:28:55              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:28:55              dut.10.240.183.67: flow list 0
20/10/2020 15:28:55              dut.10.240.183.67: 
20/10/2020 15:28:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:56              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:28:56             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:28:56             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:28:56             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:28:56             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_l3dst passed
20/10/2020 15:28:56              dut.10.240.183.67: flow flush 0
20/10/2020 15:28:56              dut.10.240.183.67: 
20/10/2020 15:28:56             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_l3src================
20/10/2020 15:28:56             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:28:56              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 15:28:56              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:28:56              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 15:28:56              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:28:56              dut.10.240.183.67: flow list 0
20/10/2020 15:28:56              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 15:28:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:57              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:57             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:28:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:28:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:58              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:28:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:28:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:28:59              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xd7f9bd82 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:28:59             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:28:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7f9bd82', '0x2')]
20/10/2020 15:28:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:00              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:00             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:29:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:29:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:01              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:29:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:29:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:03              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd7f9bd82 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7f9bd82', '0x2')]
20/10/2020 15:29:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:04              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:04             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:29:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:29:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:05              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:29:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:29:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:06              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd7f9bd82 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:06             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7f9bd82', '0x2')]
20/10/2020 15:29:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:07              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:07             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:29:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:29:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:08              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:08             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:29:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:29:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:09              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd7f9bd82 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7f9bd82', '0x2')]
20/10/2020 15:29:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:10              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:10             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:29:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:29:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:11              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xbdc2f583 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:11             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:29:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xbdc2f583', '0x3')]
20/10/2020 15:29:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:12              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xd7f9bd82 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:12             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7f9bd82', '0x2')]
20/10/2020 15:29:12             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:29:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:29:14              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:29:14              dut.10.240.183.67: flow list 0
20/10/2020 15:29:14              dut.10.240.183.67: 
20/10/2020 15:29:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:15              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:15             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:29:15             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:29:15             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:29:15             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_l3src passed
20/10/2020 15:29:15              dut.10.240.183.67: flow flush 0
20/10/2020 15:29:15              dut.10.240.183.67: 
20/10/2020 15:29:15             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_all================
20/10/2020 15:29:15             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:29:15              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 15:29:15              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:29:15              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 15:29:15              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:29:15              dut.10.240.183.67: flow list 0
20/10/2020 15:29:15              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 15:29:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:16              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xc6be5c07 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:16             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:29:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xc6be5c07', '0x7')]
20/10/2020 15:29:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:17              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xfb035d58 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xfb035d58', '0x8')]
20/10/2020 15:29:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:18              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xac851406 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xac851406', '0x6')]
20/10/2020 15:29:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:20              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x91381559 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x91381559', '0x9')]
20/10/2020 15:29:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:21              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc6be5c07 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:21             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:29:21             TestCVLIAVFRSSGTPU: hash_infos: [('0xc6be5c07', '0x7')]
20/10/2020 15:29:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:22              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xfb035d58 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xfb035d58', '0x8')]
20/10/2020 15:29:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:23              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xac851406 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xac851406', '0x6')]
20/10/2020 15:29:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:24              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x91381559 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x91381559', '0x9')]
20/10/2020 15:29:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:25              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc6be5c07 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:25             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:29:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xc6be5c07', '0x7')]
20/10/2020 15:29:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:26              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xfb035d58 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xfb035d58', '0x8')]
20/10/2020 15:29:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:27              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xac851406 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xac851406', '0x6')]
20/10/2020 15:29:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:28              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x91381559 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x91381559', '0x9')]
20/10/2020 15:29:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:29              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc6be5c07 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:29             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:29:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xc6be5c07', '0x7')]
20/10/2020 15:29:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:31              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xfb035d58 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xfb035d58', '0x8')]
20/10/2020 15:29:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:32              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xac851406 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xac851406', '0x6')]
20/10/2020 15:29:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:33              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x91381559 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x91381559', '0x9')]
20/10/2020 15:29:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:34              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xc6be5c07 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:34             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:29:34             TestCVLIAVFRSSGTPU: hash_infos: [('0xc6be5c07', '0x7')]
20/10/2020 15:29:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:35              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xfb035d58 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:35             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xfb035d58', '0x8')]
20/10/2020 15:29:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:36              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xac851406 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:36             TestCVLIAVFRSSGTPU: hash_infos: [('0xac851406', '0x6')]
20/10/2020 15:29:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:37              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x91381559 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:37             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:29:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x91381559', '0x9')]
20/10/2020 15:29:37             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:29:37              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:29:38              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:29:38              dut.10.240.183.67: flow list 0
20/10/2020 15:29:38              dut.10.240.183.67: 
20/10/2020 15:29:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:40              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:40             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:29:40             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:29:40             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:29:40             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_all passed
20/10/2020 15:29:40              dut.10.240.183.67: flow flush 0
20/10/2020 15:29:40              dut.10.240.183.67: 
20/10/2020 15:29:40             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_dl_ipv6_l3dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_l3src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_all': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_l3dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_l3src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_all': 'passed'}
20/10/2020 15:29:40             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:29:40             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6 Result PASSED:
20/10/2020 15:29:40              dut.10.240.183.67: flow flush 0
20/10/2020 15:29:41              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:29:41              dut.10.240.183.67: clear port stats all
20/10/2020 15:29:42              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:29:42              dut.10.240.183.67: stop
20/10/2020 15:29:42              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:29:42             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_symmetric Begin
20/10/2020 15:29:42              dut.10.240.183.67: 
20/10/2020 15:29:42                         tester: 
20/10/2020 15:29:42              dut.10.240.183.67: start
20/10/2020 15:29:42              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:29:42              dut.10.240.183.67: quit
20/10/2020 15:29:44              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:29:44              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:29:45              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:29:55              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:29:55              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:29:55              dut.10.240.183.67: set verbose 1
20/10/2020 15:29:55              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:29:55              dut.10.240.183.67: show port info all
20/10/2020 15:29:56              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:29:56              dut.10.240.183.67: start
20/10/2020 15:29:56              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:29:56             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_symmetric================
20/10/2020 15:29:56             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:29:56              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:29:56              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:29:56              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:29:56              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:29:56              dut.10.240.183.67: flow list 0
20/10/2020 15:29:56              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:29:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:57              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x10c71b8b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:57             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 15:29:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x10c71b8b', '0xb')]
20/10/2020 15:29:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:58              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x10c71b8b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:29:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:29:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x10c71b8b', '0xb')]
20/10/2020 15:29:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:29:59              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x932859d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:29:59             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 15:29:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x932859d5', '0x5')]
20/10/2020 15:29:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:00              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x932859d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:30:00             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:30:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x932859d5', '0x5')]
20/10/2020 15:30:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:01              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xca7b6eb4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:30:01             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 15:30:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xca7b6eb4', '0x4')]
20/10/2020 15:30:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:02              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xca7b6eb4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:30:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:30:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xca7b6eb4', '0x4')]
20/10/2020 15:30:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:04              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x10c71b8b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:04             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 15:30:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x10c71b8b', '0xb')]
20/10/2020 15:30:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:05              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x10c71b8b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:30:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x10c71b8b', '0xb')]
20/10/2020 15:30:05             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:30:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:30:06              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:30:06              dut.10.240.183.67: flow list 0
20/10/2020 15:30:06              dut.10.240.183.67: 
20/10/2020 15:30:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:07              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:07             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 15:30:07             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:30:07             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:30:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:08              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:08             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 15:30:08             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:30:08             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:30:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:09              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:09             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 15:30:09             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:30:09             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:30:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:10              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:10             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-udp'}

20/10/2020 15:30:10             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:30:10             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:30:10             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_symmetric passed
20/10/2020 15:30:10              dut.10.240.183.67: flow flush 0
20/10/2020 15:30:10              dut.10.240.183.67: 
20/10/2020 15:30:10             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_symmetric================
20/10/2020 15:30:10             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:30:10              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:30:10              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:30:10              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:30:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:30:11              dut.10.240.183.67: flow list 0
20/10/2020 15:30:11              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:30:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:12              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x10c71b8b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:12             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 15:30:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x10c71b8b', '0xb')]
20/10/2020 15:30:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:13              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x10c71b8b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:30:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x10c71b8b', '0xb')]
20/10/2020 15:30:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:14              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x932859d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:30:14             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 15:30:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x932859d5', '0x5')]
20/10/2020 15:30:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:15              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x932859d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:30:15             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:30:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x932859d5', '0x5')]
20/10/2020 15:30:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:16              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xca7b6eb4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:30:16             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 15:30:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xca7b6eb4', '0x4')]
20/10/2020 15:30:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:17              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xca7b6eb4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:30:17             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:30:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xca7b6eb4', '0x4')]
20/10/2020 15:30:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:18              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x10c71b8b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:18             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 15:30:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x10c71b8b', '0xb')]
20/10/2020 15:30:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:19              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x10c71b8b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:19             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:30:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x10c71b8b', '0xb')]
20/10/2020 15:30:19             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:30:19              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:30:21              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:30:21              dut.10.240.183.67: flow list 0
20/10/2020 15:30:21              dut.10.240.183.67: 
20/10/2020 15:30:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:22              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:22             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 15:30:22             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:30:22             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:30:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:23              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:23             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 15:30:23             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:30:23             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:30:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:24              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:24             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 15:30:24             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:30:24             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:30:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:25              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:25             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-udp'}

20/10/2020 15:30:25             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:30:25             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:30:25             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_symmetric passed
20/10/2020 15:30:25              dut.10.240.183.67: flow flush 0
20/10/2020 15:30:25              dut.10.240.183.67: 
20/10/2020 15:30:25             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_dl_ipv4_symmetric': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_symmetric': 'passed'}
20/10/2020 15:30:25             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:30:25             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_symmetric Result PASSED:
20/10/2020 15:30:25              dut.10.240.183.67: flow flush 0
20/10/2020 15:30:26              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:30:26              dut.10.240.183.67: clear port stats all
20/10/2020 15:30:27              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:30:27              dut.10.240.183.67: stop
20/10/2020 15:30:28              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

Done.
20/10/2020 15:30:28             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_tcp Begin
20/10/2020 15:30:28              dut.10.240.183.67: 
20/10/2020 15:30:28                         tester: 
20/10/2020 15:30:28              dut.10.240.183.67: start
20/10/2020 15:30:28              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:30:28             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3dst================
20/10/2020 15:30:28             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:30:28              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:30:28              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:30:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:30:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:30:28              dut.10.240.183.67: flow list 0
20/10/2020 15:30:28              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:30:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:29              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xbc3dae96 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:30:29             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:30:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xbc3dae96', '0x6')]
20/10/2020 15:30:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:30              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xaadfd8b8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:30:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xaadfd8b8', '0x8')]
20/10/2020 15:30:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:31              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xbc3dae96 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:30:31             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:30:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xbc3dae96', '0x6')]
20/10/2020 15:30:31             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:30:31              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:30:32              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:30:32              dut.10.240.183.67: flow list 0
20/10/2020 15:30:33              dut.10.240.183.67: 
20/10/2020 15:30:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:34              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:34             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:30:34             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:30:34             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:30:34             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3dst passed
20/10/2020 15:30:34              dut.10.240.183.67: flow flush 0
20/10/2020 15:30:34              dut.10.240.183.67: 
20/10/2020 15:30:34             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3src================
20/10/2020 15:30:34             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:30:34              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:30:34              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:30:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:30:34              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:30:34              dut.10.240.183.67: flow list 0
20/10/2020 15:30:34              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:30:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:35              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xb34d13cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:30:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xb34d13cb', '0xb')]
20/10/2020 15:30:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:36              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xb34d13cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:30:36             TestCVLIAVFRSSGTPU: hash_infos: [('0xb34d13cb', '0xb')]
20/10/2020 15:30:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:37              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x6565fd3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:37             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:30:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x6565fd3f', '0xf')]
20/10/2020 15:30:37             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:30:37              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:30:38              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:30:38              dut.10.240.183.67: flow list 0
20/10/2020 15:30:38              dut.10.240.183.67: 
20/10/2020 15:30:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:40              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:40             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:30:40             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:30:40             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:30:40             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3src passed
20/10/2020 15:30:40              dut.10.240.183.67: flow flush 0
20/10/2020 15:30:40              dut.10.240.183.67: 
20/10/2020 15:30:40             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3dst_l4src================
20/10/2020 15:30:40             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:30:40              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:30:40              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:30:40              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:30:40              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:30:40              dut.10.240.183.67: flow list 0
20/10/2020 15:30:40              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:30:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:41              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xa4014b41 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:30:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xa4014b41', '0x1')]
20/10/2020 15:30:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:42              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xb2e33d6f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:30:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xb2e33d6f', '0xf')]
20/10/2020 15:30:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:43              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x72da8b3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:30:43             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:30:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x72da8b3', '0x3')]
20/10/2020 15:30:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:44              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xa4014b41 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:30:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xa4014b41', '0x1')]
20/10/2020 15:30:44             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:30:44              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:30:45              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:30:45              dut.10.240.183.67: flow list 0
20/10/2020 15:30:46              dut.10.240.183.67: 
20/10/2020 15:30:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:47              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:47             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:30:47             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:30:47             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:30:47             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3dst_l4src passed
20/10/2020 15:30:47              dut.10.240.183.67: flow flush 0
20/10/2020 15:30:47              dut.10.240.183.67: 
20/10/2020 15:30:47             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3dst_l4dst================
20/10/2020 15:30:47             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:30:47              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:30:47              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:30:47              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:30:47              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:30:47              dut.10.240.183.67: flow list 0
20/10/2020 15:30:47              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:30:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:48              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x50b4e03f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:30:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x50b4e03f', '0xf')]
20/10/2020 15:30:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:49              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x46569611 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:30:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x46569611', '0x1')]
20/10/2020 15:30:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:50              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x72da8b3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:30:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:30:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x72da8b3', '0x3')]
20/10/2020 15:30:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:51              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x50b4e03f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:30:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x50b4e03f', '0xf')]
20/10/2020 15:30:51             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:30:51              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:30:52              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:30:52              dut.10.240.183.67: flow list 0
20/10/2020 15:30:53              dut.10.240.183.67: 
20/10/2020 15:30:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:54              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:54             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:30:54             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:30:54             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:30:54             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3dst_l4dst passed
20/10/2020 15:30:54              dut.10.240.183.67: flow flush 0
20/10/2020 15:30:54              dut.10.240.183.67: 
20/10/2020 15:30:54             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3src_l4src================
20/10/2020 15:30:54             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:30:54              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:30:54              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:30:54              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:30:54              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:30:54              dut.10.240.183.67: flow list 0
20/10/2020 15:30:54              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:30:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:55              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xab71f61c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:55             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:30:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xab71f61c', '0xc')]
20/10/2020 15:30:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:56              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x7d5918e8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:30:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x7d5918e8', '0x8')]
20/10/2020 15:30:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:57              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x85d15ee - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:30:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x85d15ee', '0xe')]
20/10/2020 15:30:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:30:58              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xab71f61c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:30:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:30:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xab71f61c', '0xc')]
20/10/2020 15:30:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:30:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:30:59              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:30:59              dut.10.240.183.67: flow list 0
20/10/2020 15:31:00              dut.10.240.183.67: 
20/10/2020 15:31:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:01              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:01             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:31:01             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:31:01             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:31:01             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3src_l4src passed
20/10/2020 15:31:01              dut.10.240.183.67: flow flush 0
20/10/2020 15:31:01              dut.10.240.183.67: 
20/10/2020 15:31:01             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3src_l4dst================
20/10/2020 15:31:01             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:31:01              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:31:01              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:31:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:31:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:31:01              dut.10.240.183.67: flow list 0
20/10/2020 15:31:01              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:31:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:02              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x5fc45d62 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:31:02             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:31:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x5fc45d62', '0x2')]
20/10/2020 15:31:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:03              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x89ecb396 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:31:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x89ecb396', '0x6')]
20/10/2020 15:31:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:04              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x85d15ee - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x85d15ee', '0xe')]
20/10/2020 15:31:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:05              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x5fc45d62 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:31:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:31:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x5fc45d62', '0x2')]
20/10/2020 15:31:05             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:31:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:31:07              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:31:07              dut.10.240.183.67: flow list 0
20/10/2020 15:31:07              dut.10.240.183.67: 
20/10/2020 15:31:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:08              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:08             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 15:31:08             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3src_l4dst passed
20/10/2020 15:31:08              dut.10.240.183.67: flow flush 0
20/10/2020 15:31:08              dut.10.240.183.67: 
20/10/2020 15:31:08             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_tcp_l4src================
20/10/2020 15:31:08             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:31:08              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:31:08              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:31:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:31:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:31:08              dut.10.240.183.67: flow list 0
20/10/2020 15:31:08              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:31:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:09              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xafbf3eac - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:09             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:31:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xafbf3eac', '0xc')]
20/10/2020 15:31:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:10              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x6f3a7fde - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x6f3a7fde', '0xe')]
20/10/2020 15:31:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:11              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xafbf3eac - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:11             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:31:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xafbf3eac', '0xc')]
20/10/2020 15:31:11             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:31:11              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:31:12              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:31:12              dut.10.240.183.67: flow list 0
20/10/2020 15:31:12              dut.10.240.183.67: 
20/10/2020 15:31:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:14              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:14             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:31:14             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:31:14             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:31:14             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_tcp_l4src passed
20/10/2020 15:31:14              dut.10.240.183.67: flow flush 0
20/10/2020 15:31:14              dut.10.240.183.67: 
20/10/2020 15:31:14             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_tcp_l4dst================
20/10/2020 15:31:14             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:31:14              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:31:14              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:31:14              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:31:14              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:31:14              dut.10.240.183.67: flow list 0
20/10/2020 15:31:14              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:31:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:15              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x4dfb4c48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:15             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:31:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x4dfb4c48', '0x8')]
20/10/2020 15:31:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:16              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x8d7e0d3a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x8d7e0d3a', '0xa')]
20/10/2020 15:31:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:17              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x4dfb4c48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:17             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:31:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x4dfb4c48', '0x8')]
20/10/2020 15:31:17             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:31:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:31:18              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:31:18              dut.10.240.183.67: flow list 0
20/10/2020 15:31:18              dut.10.240.183.67: 
20/10/2020 15:31:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:20              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:20             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 15:31:20             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_tcp_l4dst passed
20/10/2020 15:31:20              dut.10.240.183.67: flow flush 0
20/10/2020 15:31:20              dut.10.240.183.67: 
20/10/2020 15:31:20             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_tcp_all================
20/10/2020 15:31:20             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:31:20              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:31:20              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:31:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:31:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:31:20              dut.10.240.183.67: flow list 0
20/10/2020 15:31:20              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:31:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:21              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x52895cae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:21             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:31:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x52895cae', '0xe')]
20/10/2020 15:31:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:22              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xcb720fb1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xcb720fb1', '0x1')]
20/10/2020 15:31:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:23              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x196326c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x196326c', '0xc')]
20/10/2020 15:31:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:24              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x5291fefc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x5291fefc', '0xc')]
20/10/2020 15:31:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:25              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x84a1b25a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x84a1b25a', '0xa')]
20/10/2020 15:31:25             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:31:25              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:31:26              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:31:26              dut.10.240.183.67: flow list 0
20/10/2020 15:31:27              dut.10.240.183.67: 
20/10/2020 15:31:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:28              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:28             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:31:28             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:31:28             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:31:28             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_tcp_all passed
20/10/2020 15:31:28              dut.10.240.183.67: flow flush 0
20/10/2020 15:31:28              dut.10.240.183.67: 
20/10/2020 15:31:28             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3dst================
20/10/2020 15:31:28             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:31:28              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:31:28              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:31:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:31:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:31:28              dut.10.240.183.67: flow list 0
20/10/2020 15:31:28              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:31:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:29              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xbc3dae96 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:31:29             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:31:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xbc3dae96', '0x6')]
20/10/2020 15:31:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:30              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xaadfd8b8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xaadfd8b8', '0x8')]
20/10/2020 15:31:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:31              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xbc3dae96 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:31:31             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:31:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xbc3dae96', '0x6')]
20/10/2020 15:31:31             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:31:31              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:31:32              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:31:32              dut.10.240.183.67: flow list 0
20/10/2020 15:31:32              dut.10.240.183.67: 
20/10/2020 15:31:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:34              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:34             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:31:34             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:31:34             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:31:34             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3dst passed
20/10/2020 15:31:34              dut.10.240.183.67: flow flush 0
20/10/2020 15:31:34              dut.10.240.183.67: 
20/10/2020 15:31:34             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3src================
20/10/2020 15:31:34             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:31:34              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:31:34              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:31:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:31:34              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:31:34              dut.10.240.183.67: flow list 0
20/10/2020 15:31:34              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:31:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:35              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xb34d13cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:31:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xb34d13cb', '0xb')]
20/10/2020 15:31:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:36              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xb34d13cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:31:36             TestCVLIAVFRSSGTPU: hash_infos: [('0xb34d13cb', '0xb')]
20/10/2020 15:31:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:37              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x6565fd3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:37             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x6565fd3f', '0xf')]
20/10/2020 15:31:37             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:31:37              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:31:38              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:31:38              dut.10.240.183.67: flow list 0
20/10/2020 15:31:38              dut.10.240.183.67: 
20/10/2020 15:31:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:39              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:39             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:31:39             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:31:39             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:31:39             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3src passed
20/10/2020 15:31:39              dut.10.240.183.67: flow flush 0
20/10/2020 15:31:40              dut.10.240.183.67: 
20/10/2020 15:31:40             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3dst_l4src================
20/10/2020 15:31:40             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:31:40              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:31:40              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:31:40              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:31:40              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:31:40              dut.10.240.183.67: flow list 0
20/10/2020 15:31:40              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:31:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:41              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xa4014b41 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:31:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xa4014b41', '0x1')]
20/10/2020 15:31:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:42              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xb2e33d6f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xb2e33d6f', '0xf')]
20/10/2020 15:31:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:43              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x72da8b3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:31:43             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x72da8b3', '0x3')]
20/10/2020 15:31:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:44              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xa4014b41 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:31:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xa4014b41', '0x1')]
20/10/2020 15:31:44             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:31:44              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:31:45              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:31:45              dut.10.240.183.67: flow list 0
20/10/2020 15:31:45              dut.10.240.183.67: 
20/10/2020 15:31:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:46              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:46             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:31:46             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:31:46             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:31:46             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3dst_l4src passed
20/10/2020 15:31:46              dut.10.240.183.67: flow flush 0
20/10/2020 15:31:47              dut.10.240.183.67: 
20/10/2020 15:31:47             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3dst_l4dst================
20/10/2020 15:31:47             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:31:47              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:31:47              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:31:47              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:31:47              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:31:47              dut.10.240.183.67: flow list 0
20/10/2020 15:31:47              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:31:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:48              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x50b4e03f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:31:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x50b4e03f', '0xf')]
20/10/2020 15:31:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:49              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x46569611 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x46569611', '0x1')]
20/10/2020 15:31:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:50              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x72da8b3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:31:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x72da8b3', '0x3')]
20/10/2020 15:31:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:51              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x50b4e03f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:31:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x50b4e03f', '0xf')]
20/10/2020 15:31:51             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:31:51              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:31:52              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:31:52              dut.10.240.183.67: flow list 0
20/10/2020 15:31:52              dut.10.240.183.67: 
20/10/2020 15:31:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:53              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:53             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:31:53             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:31:53             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:31:53             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3dst_l4dst passed
20/10/2020 15:31:53              dut.10.240.183.67: flow flush 0
20/10/2020 15:31:54              dut.10.240.183.67: 
20/10/2020 15:31:54             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3src_l4src================
20/10/2020 15:31:54             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:31:54              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:31:54              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:31:54              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:31:54              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:31:54              dut.10.240.183.67: flow list 0
20/10/2020 15:31:54              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:31:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:55              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xab71f61c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:55             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:31:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xab71f61c', '0xc')]
20/10/2020 15:31:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:56              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x7d5918e8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x7d5918e8', '0x8')]
20/10/2020 15:31:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:57              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x85d15ee - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:31:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x85d15ee', '0xe')]
20/10/2020 15:31:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:31:58              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xab71f61c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:31:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:31:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xab71f61c', '0xc')]
20/10/2020 15:31:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:31:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:31:59              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:31:59              dut.10.240.183.67: flow list 0
20/10/2020 15:31:59              dut.10.240.183.67: 
20/10/2020 15:31:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:00              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:00             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:32:00             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:32:00             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:32:00             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3src_l4src passed
20/10/2020 15:32:00              dut.10.240.183.67: flow flush 0
20/10/2020 15:32:01              dut.10.240.183.67: 
20/10/2020 15:32:01             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3src_l4dst================
20/10/2020 15:32:01             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:32:01              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:32:01              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:32:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:32:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:32:01              dut.10.240.183.67: flow list 0
20/10/2020 15:32:01              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:32:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:02              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x5fc45d62 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:32:02             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:32:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x5fc45d62', '0x2')]
20/10/2020 15:32:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:03              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x89ecb396 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:32:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:32:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x89ecb396', '0x6')]
20/10/2020 15:32:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:04              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x85d15ee - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:32:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x85d15ee', '0xe')]
20/10/2020 15:32:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:05              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x5fc45d62 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:32:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:32:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x5fc45d62', '0x2')]
20/10/2020 15:32:05             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:32:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:32:06              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:32:06              dut.10.240.183.67: flow list 0
20/10/2020 15:32:06              dut.10.240.183.67: 
20/10/2020 15:32:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:07              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:07             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 15:32:07             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3src_l4dst passed
20/10/2020 15:32:07              dut.10.240.183.67: flow flush 0
20/10/2020 15:32:08              dut.10.240.183.67: 
20/10/2020 15:32:08             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_tcp_l4src================
20/10/2020 15:32:08             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:32:08              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:32:08              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:32:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:32:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:32:08              dut.10.240.183.67: flow list 0
20/10/2020 15:32:08              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:32:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:09              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xafbf3eac - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:09             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:32:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xafbf3eac', '0xc')]
20/10/2020 15:32:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:10              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x6f3a7fde - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:32:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x6f3a7fde', '0xe')]
20/10/2020 15:32:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:11              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xafbf3eac - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:11             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:32:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xafbf3eac', '0xc')]
20/10/2020 15:32:11             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:32:11              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:32:12              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:32:12              dut.10.240.183.67: flow list 0
20/10/2020 15:32:12              dut.10.240.183.67: 
20/10/2020 15:32:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:13              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:13             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:32:13             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:32:13             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:32:13             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_tcp_l4src passed
20/10/2020 15:32:13              dut.10.240.183.67: flow flush 0
20/10/2020 15:32:13              dut.10.240.183.67: 
20/10/2020 15:32:13             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_tcp_l4dst================
20/10/2020 15:32:13             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:32:13              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:32:14              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:32:14              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:32:14              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:32:14              dut.10.240.183.67: flow list 0
20/10/2020 15:32:14              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:32:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:15              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x4dfb4c48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:15             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:32:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x4dfb4c48', '0x8')]
20/10/2020 15:32:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:16              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x8d7e0d3a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:32:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x8d7e0d3a', '0xa')]
20/10/2020 15:32:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:17              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x4dfb4c48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:17             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:32:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x4dfb4c48', '0x8')]
20/10/2020 15:32:17             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:32:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:32:18              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:32:18              dut.10.240.183.67: flow list 0
20/10/2020 15:32:18              dut.10.240.183.67: 
20/10/2020 15:32:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:19              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:19             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 15:32:19             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_tcp_l4dst passed
20/10/2020 15:32:19              dut.10.240.183.67: flow flush 0
20/10/2020 15:32:19              dut.10.240.183.67: 
20/10/2020 15:32:19             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_tcp_all================
20/10/2020 15:32:19             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:32:19              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:32:19              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:32:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:32:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:32:20              dut.10.240.183.67: flow list 0
20/10/2020 15:32:20              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:32:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:21              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x52895cae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:21             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:32:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x52895cae', '0xe')]
20/10/2020 15:32:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:22              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xcb720fb1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:32:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xcb720fb1', '0x1')]
20/10/2020 15:32:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:23              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x196326c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:32:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x196326c', '0xc')]
20/10/2020 15:32:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:24              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x5291fefc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:32:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x5291fefc', '0xc')]
20/10/2020 15:32:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:25              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x84a1b25a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:32:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x84a1b25a', '0xa')]
20/10/2020 15:32:25             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:32:25              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:32:26              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:32:26              dut.10.240.183.67: flow list 0
20/10/2020 15:32:26              dut.10.240.183.67: 
20/10/2020 15:32:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:27              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:27             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:32:27             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:32:27             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:32:27             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_tcp_all passed
20/10/2020 15:32:27              dut.10.240.183.67: flow flush 0
20/10/2020 15:32:27              dut.10.240.183.67: 
20/10/2020 15:32:27             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_tcp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_tcp_l4src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_tcp_l4dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_tcp_all': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_tcp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_tcp_l4src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_tcp_l4dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_tcp_all': 'passed'}
20/10/2020 15:32:27             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:32:27             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_tcp Result PASSED:
20/10/2020 15:32:27              dut.10.240.183.67: flow flush 0
20/10/2020 15:32:29              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:32:29              dut.10.240.183.67: clear port stats all
20/10/2020 15:32:30              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:32:30              dut.10.240.183.67: stop
20/10/2020 15:32:30              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:32:30             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_tcp_symmetric Begin
20/10/2020 15:32:30              dut.10.240.183.67: 
20/10/2020 15:32:30                         tester: 
20/10/2020 15:32:30              dut.10.240.183.67: start
20/10/2020 15:32:30              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:32:30              dut.10.240.183.67: quit
20/10/2020 15:32:32              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:32:32              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:32:33              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:32:43              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:32:43              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:32:43              dut.10.240.183.67: set verbose 1
20/10/2020 15:32:43              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:32:43              dut.10.240.183.67: show port info all
20/10/2020 15:32:43              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:32:43              dut.10.240.183.67: start
20/10/2020 15:32:43              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:32:43             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_tcp_symmetric================
20/10/2020 15:32:43             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:32:43              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:32:43              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:32:43              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:32:43              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:32:43              dut.10.240.183.67: flow list 0
20/10/2020 15:32:44              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:32:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:45              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xe728350 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:45             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:32:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xe728350', '0x0')]
20/10/2020 15:32:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:46              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xe728350 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:46             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:32:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xe728350', '0x0')]
20/10/2020 15:32:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:47              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xe728350 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:32:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xe728350', '0x0')]
20/10/2020 15:32:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:48              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xe728350 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:48             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:32:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xe728350', '0x0')]
20/10/2020 15:32:48             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:32:48              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:32:49              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:32:49              dut.10.240.183.67: flow list 0
20/10/2020 15:32:49              dut.10.240.183.67: 
20/10/2020 15:32:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:50              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:50             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:32:50             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:32:50             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:32:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:51              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:51             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:32:51             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:32:51             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:32:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:52              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:52             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:32:52             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:32:52             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:32:52             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_tcp_symmetric passed
20/10/2020 15:32:52              dut.10.240.183.67: flow flush 0
20/10/2020 15:32:53              dut.10.240.183.67: 
20/10/2020 15:32:53             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_tcp_symmetric================
20/10/2020 15:32:53             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:32:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:32:53              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:32:53              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:32:53              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:32:53              dut.10.240.183.67: flow list 0
20/10/2020 15:32:53              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:32:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:54              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xe728350 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:32:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xe728350', '0x0')]
20/10/2020 15:32:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:55              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xe728350 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:32:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xe728350', '0x0')]
20/10/2020 15:32:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:56              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xe728350 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:56             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:32:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xe728350', '0x0')]
20/10/2020 15:32:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:57              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xe728350 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:57             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:32:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xe728350', '0x0')]
20/10/2020 15:32:57             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:32:57              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:32:58              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:32:58              dut.10.240.183.67: flow list 0
20/10/2020 15:32:58              dut.10.240.183.67: 
20/10/2020 15:32:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:32:59              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:32:59             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:32:59             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:32:59             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:32:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:01              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:01             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:33:01             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:33:01             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:33:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:02              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:02             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:33:02             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:33:02             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:33:02             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_tcp_symmetric passed
20/10/2020 15:33:02              dut.10.240.183.67: flow flush 0
20/10/2020 15:33:02              dut.10.240.183.67: 
20/10/2020 15:33:02             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_dl_ipv4_tcp_symmetric': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_tcp_symmetric': 'passed'}
20/10/2020 15:33:02             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:33:02             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_tcp_symmetric Result PASSED:
20/10/2020 15:33:02              dut.10.240.183.67: flow flush 0
20/10/2020 15:33:03              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:33:03              dut.10.240.183.67: clear port stats all
20/10/2020 15:33:04              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:33:04              dut.10.240.183.67: stop
20/10/2020 15:33:04              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

Done.
20/10/2020 15:33:04             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_tcp_without_ul_dl Begin
20/10/2020 15:33:04              dut.10.240.183.67: 
20/10/2020 15:33:04                         tester: 
20/10/2020 15:33:04              dut.10.240.183.67: start
20/10/2020 15:33:04              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:33:04             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3src================
20/10/2020 15:33:04             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:33:04              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:33:04              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:33:04              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:33:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:33:05              dut.10.240.183.67: flow list 0
20/10/2020 15:33:05              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:33:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:06              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x6710bd41 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:33:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x6710bd41', '0x1')]
20/10/2020 15:33:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:07              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x6710bd41 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:07             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x6710bd41', '0x1')]
20/10/2020 15:33:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:08              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xf1918958 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:33:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1918958', '0x8')]
20/10/2020 15:33:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:09              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x6710bd41 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x6710bd41', '0x1')]
20/10/2020 15:33:09             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:33:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:33:10              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:33:10              dut.10.240.183.67: flow list 0
20/10/2020 15:33:10              dut.10.240.183.67: 
20/10/2020 15:33:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:11              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:11             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:33:11             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:33:11             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:33:11             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3src passed
20/10/2020 15:33:11              dut.10.240.183.67: flow flush 0
20/10/2020 15:33:11              dut.10.240.183.67: 
20/10/2020 15:33:11             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst================
20/10/2020 15:33:11             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:33:11              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:33:12              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:33:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:33:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:33:12              dut.10.240.183.67: flow list 0
20/10/2020 15:33:12              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:33:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:13              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x6c6d9927 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:13             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:33:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x6c6d9927', '0x7')]
20/10/2020 15:33:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:14              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x6c6d9927 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:14             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x6c6d9927', '0x7')]
20/10/2020 15:33:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:15              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x581e64bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:33:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x581e64bf', '0xf')]
20/10/2020 15:33:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:16              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x6c6d9927 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:16             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x6c6d9927', '0x7')]
20/10/2020 15:33:16             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:33:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:33:17              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:33:17              dut.10.240.183.67: flow list 0
20/10/2020 15:33:17              dut.10.240.183.67: 
20/10/2020 15:33:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:18              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:18             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:33:18             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:33:18             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:33:18             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst passed
20/10/2020 15:33:18              dut.10.240.183.67: flow flush 0
20/10/2020 15:33:18              dut.10.240.183.67: 
20/10/2020 15:33:18             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3src_l4dst================
20/10/2020 15:33:18             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:33:18              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:33:19              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:33:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:33:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:33:19              dut.10.240.183.67: flow list 0
20/10/2020 15:33:19              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:33:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:20              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xa6e35764 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:33:20             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:33:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xa6e35764', '0x4')]
20/10/2020 15:33:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:21              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x29deb377 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:21             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:33:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x29deb377', '0x7')]
20/10/2020 15:33:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:22              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x3062637d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:33:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:33:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x3062637d', '0xd')]
20/10/2020 15:33:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:23              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xa6e35764 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:33:23             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xa6e35764', '0x4')]
20/10/2020 15:33:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:24              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xa6e35764 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:33:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xa6e35764', '0x4')]
20/10/2020 15:33:24             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:33:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:33:25              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:33:25              dut.10.240.183.67: flow list 0
20/10/2020 15:33:25              dut.10.240.183.67: 
20/10/2020 15:33:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:27              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:27             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:33:27             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:33:27             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:33:27             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3src_l4dst passed
20/10/2020 15:33:27              dut.10.240.183.67: flow flush 0
20/10/2020 15:33:27              dut.10.240.183.67: 
20/10/2020 15:33:27             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst_l4src================
20/10/2020 15:33:27             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:33:27              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:33:27              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:33:27              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:33:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:33:27              dut.10.240.183.67: flow list 0
20/10/2020 15:33:27              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:33:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:28              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x82f4c41f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:28             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:33:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x82f4c41f', '0xf')]
20/10/2020 15:33:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:29              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xb516cc9f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:33:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xb516cc9f', '0xf')]
20/10/2020 15:33:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:30              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xb6873987 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:33:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xb6873987', '0x7')]
20/10/2020 15:33:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:31              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x82f4c41f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:31             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x82f4c41f', '0xf')]
20/10/2020 15:33:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:32              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x82f4c41f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:32             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x82f4c41f', '0xf')]
20/10/2020 15:33:32             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:33:32              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:33:33              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:33:33              dut.10.240.183.67: flow list 0
20/10/2020 15:33:34              dut.10.240.183.67: 
20/10/2020 15:33:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:35              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:35             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:33:35             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:33:35             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:33:35             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst_l4src passed
20/10/2020 15:33:35              dut.10.240.183.67: flow flush 0
20/10/2020 15:33:35              dut.10.240.183.67: 
20/10/2020 15:33:35             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3src_l4src================
20/10/2020 15:33:35             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:33:35              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:33:35              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:33:35              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:33:35              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:33:35              dut.10.240.183.67: flow list 0
20/10/2020 15:33:35              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:33:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:36              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x8989e079 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:36             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:33:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x8989e079', '0x9')]
20/10/2020 15:33:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:37              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xbe6be8f9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:37             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:33:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xbe6be8f9', '0x9')]
20/10/2020 15:33:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:38              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x1f08d460 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:33:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x1f08d460', '0x0')]
20/10/2020 15:33:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:39              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x8989e079 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:39             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x8989e079', '0x9')]
20/10/2020 15:33:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:40              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x8989e079 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x8989e079', '0x9')]
20/10/2020 15:33:40             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:33:40              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:33:42              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:33:42              dut.10.240.183.67: flow list 0
20/10/2020 15:33:42              dut.10.240.183.67: 
20/10/2020 15:33:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:43              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:43             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:33:43             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:33:43             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:33:43             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3src_l4src passed
20/10/2020 15:33:43              dut.10.240.183.67: flow flush 0
20/10/2020 15:33:43              dut.10.240.183.67: 
20/10/2020 15:33:43             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst_l4dst================
20/10/2020 15:33:43             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:33:43              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:33:43              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:33:43              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:33:43              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:33:43              dut.10.240.183.67: flow list 0
20/10/2020 15:33:43              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:33:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:44              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xad9e7302 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:33:44             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:33:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xad9e7302', '0x2')]
20/10/2020 15:33:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:45              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x22a39711 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:33:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x22a39711', '0x1')]
20/10/2020 15:33:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:46              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x99ed8e9a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:33:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x99ed8e9a', '0xa')]
20/10/2020 15:33:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:47              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xad9e7302 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:33:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xad9e7302', '0x2')]
20/10/2020 15:33:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:49              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xad9e7302 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:33:49             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xad9e7302', '0x2')]
20/10/2020 15:33:49             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:33:49              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:33:50              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:33:50              dut.10.240.183.67: flow list 0
20/10/2020 15:33:50              dut.10.240.183.67: 
20/10/2020 15:33:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:51              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:51             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:33:51             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:33:51             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:33:51             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst_l4dst passed
20/10/2020 15:33:51              dut.10.240.183.67: flow flush 0
20/10/2020 15:33:51              dut.10.240.183.67: 
20/10/2020 15:33:51             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l4src_only================
20/10/2020 15:33:51             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:33:51              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:33:51              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:33:51              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:33:51              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:33:51              dut.10.240.183.67: flow list 0
20/10/2020 15:33:51              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:33:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:52              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xf015054e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:52             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:33:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xf015054e', '0xe')]
20/10/2020 15:33:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:53              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x209e93e0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:33:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x209e93e0', '0x0')]
20/10/2020 15:33:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:54              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xf015054e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xf015054e', '0xe')]
20/10/2020 15:33:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:56              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xf015054e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:56             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:33:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xf015054e', '0xe')]
20/10/2020 15:33:56             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:33:56              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:33:57              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:33:57              dut.10.240.183.67: flow list 0
20/10/2020 15:33:57              dut.10.240.183.67: 
20/10/2020 15:33:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:58              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:58             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:33:58             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:33:58             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:33:58             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l4src_only passed
20/10/2020 15:33:58              dut.10.240.183.67: flow flush 0
20/10/2020 15:33:58              dut.10.240.183.67: 
20/10/2020 15:33:58             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l4dst_only================
20/10/2020 15:33:58             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:33:58              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:33:58              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:33:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:33:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:33:58              dut.10.240.183.67: flow list 0
20/10/2020 15:33:58              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:33:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:33:59              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xb8ef9f81 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:33:59             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:33:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xb8ef9f81', '0x1')]
20/10/2020 15:33:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:00              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x4e3de87 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:34:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x4e3de87', '0x7')]
20/10/2020 15:34:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:01              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xb8ef9f81 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:34:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xb8ef9f81', '0x1')]
20/10/2020 15:34:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:03              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0xb8ef9f81 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:34:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xb8ef9f81', '0x1')]
20/10/2020 15:34:03             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:34:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:34:04              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:34:04              dut.10.240.183.67: flow list 0
20/10/2020 15:34:04              dut.10.240.183.67: 
20/10/2020 15:34:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:05              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:05             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:34:05             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:34:05             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:34:05             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l4dst_only passed
20/10/2020 15:34:05              dut.10.240.183.67: flow flush 0
20/10/2020 15:34:05              dut.10.240.183.67: 
20/10/2020 15:34:05             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp================
20/10/2020 15:34:05             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:34:05              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:34:05              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:34:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:34:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:34:05              dut.10.240.183.67: flow list 0
20/10/2020 15:34:05              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:34:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:06              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x18b6e37e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:34:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x18b6e37e', '0xe')]
20/10/2020 15:34:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:07              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x934475be - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:34:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x934475be', '0xe')]
20/10/2020 15:34:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:09              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x8e7641f3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:34:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:34:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x8e7641f3', '0x3')]
20/10/2020 15:34:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:10              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x23b57ded - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:34:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:34:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x23b57ded', '0xd')]
20/10/2020 15:34:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:11              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x8e37d767 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:34:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x8e37d767', '0x7')]
20/10/2020 15:34:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:12              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x18b6e37e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:34:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x18b6e37e', '0xe')]
20/10/2020 15:34:12             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:34:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:34:13              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:34:13              dut.10.240.183.67: flow list 0
20/10/2020 15:34:13              dut.10.240.183.67: 
20/10/2020 15:34:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:14              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:14             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:34:14             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:34:14             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:34:14             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp passed
20/10/2020 15:34:14              dut.10.240.183.67: flow flush 0
20/10/2020 15:34:14              dut.10.240.183.67: 
20/10/2020 15:34:14             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l4src_only': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp_l4dst_only': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_tcp': 'passed'}
20/10/2020 15:34:14             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:34:14             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_tcp_without_ul_dl Result PASSED:
20/10/2020 15:34:14              dut.10.240.183.67: flow flush 0
20/10/2020 15:34:15              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:34:15              dut.10.240.183.67: clear port stats all
20/10/2020 15:34:17              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:34:17              dut.10.240.183.67: stop
20/10/2020 15:34:17              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:34:17             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric Begin
20/10/2020 15:34:17              dut.10.240.183.67: 
20/10/2020 15:34:17                         tester: 
20/10/2020 15:34:17              dut.10.240.183.67: start
20/10/2020 15:34:17              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:34:17              dut.10.240.183.67: quit
20/10/2020 15:34:18              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:34:18              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:34:20              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:34:30              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:34:30              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:34:30              dut.10.240.183.67: set verbose 1
20/10/2020 15:34:30              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:34:30              dut.10.240.183.67: show port info all
20/10/2020 15:34:30              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:34:30              dut.10.240.183.67: start
20/10/2020 15:34:30              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:34:30             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric================
20/10/2020 15:34:30             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:34:30              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:34:30              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:34:30              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:34:30              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:34:30              dut.10.240.183.67: flow list 0
20/10/2020 15:34:30              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 15:34:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:31              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x3f1fdd1b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:31             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-dl'}

20/10/2020 15:34:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f1fdd1b', '0xb')]
20/10/2020 15:34:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:32              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x3f1fdd1b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:32             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:34:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f1fdd1b', '0xb')]
20/10/2020 15:34:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:34              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x3f1fdd1b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:34:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f1fdd1b', '0xb')]
20/10/2020 15:34:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:35              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x3f1fdd1b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:35             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:34:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f1fdd1b', '0xb')]
20/10/2020 15:34:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:36              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x3f1fdd1b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:36             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-ul'}

20/10/2020 15:34:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f1fdd1b', '0xb')]
20/10/2020 15:34:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:37              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x3f1fdd1b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:34:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f1fdd1b', '0xb')]
20/10/2020 15:34:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:38              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x3f1fdd1b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:38             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:34:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f1fdd1b', '0xb')]
20/10/2020 15:34:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:39              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - RSS hash=0x3f1fdd1b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:39             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:34:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f1fdd1b', '0xb')]
20/10/2020 15:34:39             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:34:39              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:34:40              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:34:40              dut.10.240.183.67: flow list 0
20/10/2020 15:34:40              dut.10.240.183.67: 
20/10/2020 15:34:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:41              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:41             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:34:41             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:34:41             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:34:41             TestCVLIAVFRSSGTPU: action: udp-dl

20/10/2020 15:34:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:42              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=602 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:42             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:34:42             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:34:42             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:34:42             TestCVLIAVFRSSGTPU: action: udp-ul

20/10/2020 15:34:42             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric passed
20/10/2020 15:34:42              dut.10.240.183.67: flow flush 0
20/10/2020 15:34:43              dut.10.240.183.67: 
20/10/2020 15:34:43             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric': 'passed'}
20/10/2020 15:34:43             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:34:43             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric Result PASSED:
20/10/2020 15:34:43              dut.10.240.183.67: flow flush 0
20/10/2020 15:34:44              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:34:44              dut.10.240.183.67: clear port stats all
20/10/2020 15:34:45              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:34:45              dut.10.240.183.67: stop
20/10/2020 15:34:45              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:34:45             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_udp Begin
20/10/2020 15:34:45              dut.10.240.183.67: 
20/10/2020 15:34:45                         tester: 
20/10/2020 15:34:45              dut.10.240.183.67: start
20/10/2020 15:34:45              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:34:45             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst================
20/10/2020 15:34:45             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:34:45              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:34:45              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:34:45              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:34:45              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:34:45              dut.10.240.183.67: flow list 0
20/10/2020 15:34:45              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:34:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:47              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x7a40d0cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:47             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:34:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x7a40d0cb', '0xb')]
20/10/2020 15:34:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:48              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x9152ade2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:34:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:34:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x9152ade2', '0x2')]
20/10/2020 15:34:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:49              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x7a40d0cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:49             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:34:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x7a40d0cb', '0xb')]
20/10/2020 15:34:49             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:34:49              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:34:50              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:34:50              dut.10.240.183.67: flow list 0
20/10/2020 15:34:50              dut.10.240.183.67: 
20/10/2020 15:34:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:51              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:51             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:34:51             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:34:51             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:34:51             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst passed
20/10/2020 15:34:51              dut.10.240.183.67: flow flush 0
20/10/2020 15:34:51              dut.10.240.183.67: 
20/10/2020 15:34:51             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src================
20/10/2020 15:34:51             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:34:51              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:34:51              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:34:51              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:34:51              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:34:51              dut.10.240.183.67: flow list 0
20/10/2020 15:34:51              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:34:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:52              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xea514b54 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:34:52             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:34:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xea514b54', '0x4')]
20/10/2020 15:34:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:54              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xea514b54 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:34:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:34:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xea514b54', '0x4')]
20/10/2020 15:34:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:55              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2e629833 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:34:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:34:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x2e629833', '0x3')]
20/10/2020 15:34:55             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:34:55              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:34:56              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:34:56              dut.10.240.183.67: flow list 0
20/10/2020 15:34:56              dut.10.240.183.67: 
20/10/2020 15:34:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:57              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:57             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:34:57             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:34:57             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:34:57             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src passed
20/10/2020 15:34:57              dut.10.240.183.67: flow flush 0
20/10/2020 15:34:57              dut.10.240.183.67: 
20/10/2020 15:34:57             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst_l4src================
20/10/2020 15:34:57             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:34:57              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:34:57              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:34:57              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:34:57              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:34:57              dut.10.240.183.67: flow list 0
20/10/2020 15:34:57              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:34:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:58              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2b271860 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:58             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:34:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x2b271860', '0x0')]
20/10/2020 15:34:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:34:59              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc0356549 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:34:59             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:34:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xc0356549', '0x9')]
20/10/2020 15:34:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:01              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc581acaa - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:01             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xc581acaa', '0xa')]
20/10/2020 15:35:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:02              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2b271860 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:35:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x2b271860', '0x0')]
20/10/2020 15:35:02             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:35:02              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:35:03              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:35:03              dut.10.240.183.67: flow list 0
20/10/2020 15:35:03              dut.10.240.183.67: 
20/10/2020 15:35:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:04              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:04             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:35:04             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:35:04             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:35:04             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst_l4src passed
20/10/2020 15:35:04              dut.10.240.183.67: flow flush 0
20/10/2020 15:35:04              dut.10.240.183.67: 
20/10/2020 15:35:04             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst_l4dst================
20/10/2020 15:35:04             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:35:04              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:35:04              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:35:04              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:35:04              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:35:04              dut.10.240.183.67: flow list 0
20/10/2020 15:35:04              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:35:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:05              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x668b04e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:35:05             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:35:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x668b04e5', '0x5')]
20/10/2020 15:35:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:06              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x8d9979cc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:06             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x8d9979cc', '0xc')]
20/10/2020 15:35:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:08              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc581acaa - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xc581acaa', '0xa')]
20/10/2020 15:35:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:09              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x668b04e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:35:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:35:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x668b04e5', '0x5')]
20/10/2020 15:35:09             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:35:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:35:10              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:35:10              dut.10.240.183.67: flow list 0
20/10/2020 15:35:10              dut.10.240.183.67: 
20/10/2020 15:35:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:11              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:11             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:35:11             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:35:11             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:35:11             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst_l4dst passed
20/10/2020 15:35:11              dut.10.240.183.67: flow flush 0
20/10/2020 15:35:11              dut.10.240.183.67: 
20/10/2020 15:35:11             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src_l4src================
20/10/2020 15:35:11             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:35:11              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:35:11              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:35:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:35:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:35:11              dut.10.240.183.67: flow list 0
20/10/2020 15:35:11              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:35:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:12              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbb3683ff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:12             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:35:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xbb3683ff', '0xf')]
20/10/2020 15:35:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:13              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x7f055098 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x7f055098', '0x8')]
20/10/2020 15:35:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:15              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x55903735 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:35:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x55903735', '0x5')]
20/10/2020 15:35:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:16              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbb3683ff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:16             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:35:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xbb3683ff', '0xf')]
20/10/2020 15:35:16             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:35:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:35:17              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:35:17              dut.10.240.183.67: flow list 0
20/10/2020 15:35:17              dut.10.240.183.67: 
20/10/2020 15:35:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:18              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:18             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:35:18             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:35:18             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:35:18             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src_l4src passed
20/10/2020 15:35:18              dut.10.240.183.67: flow flush 0
20/10/2020 15:35:18              dut.10.240.183.67: 
20/10/2020 15:35:18             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src_l4dst================
20/10/2020 15:35:18             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:35:18              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:35:18              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:35:18              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:35:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:35:18              dut.10.240.183.67: flow list 0
20/10/2020 15:35:18              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:35:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:19              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xf69a9f7a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:19             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:35:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xf69a9f7a', '0xa')]
20/10/2020 15:35:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:20              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x32a94c1d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:35:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x32a94c1d', '0xd')]
20/10/2020 15:35:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:22              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x55903735 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:35:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x55903735', '0x5')]
20/10/2020 15:35:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:23              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xf69a9f7a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:23             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:35:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xf69a9f7a', '0xa')]
20/10/2020 15:35:23             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:35:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:35:24              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:35:24              dut.10.240.183.67: flow list 0
20/10/2020 15:35:24              dut.10.240.183.67: 
20/10/2020 15:35:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:25              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:25             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 15:35:25             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src_l4dst passed
20/10/2020 15:35:25              dut.10.240.183.67: flow flush 0
20/10/2020 15:35:25              dut.10.240.183.67: 
20/10/2020 15:35:25             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_udp_l4src================
20/10/2020 15:35:25             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:35:25              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:35:25              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:35:25              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:35:25              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:35:25              dut.10.240.183.67: flow list 0
20/10/2020 15:35:25              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:35:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:26              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb0b21172 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:35:26             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:35:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xb0b21172', '0x2')]
20/10/2020 15:35:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:27              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x57bfd43c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x57bfd43c', '0xc')]
20/10/2020 15:35:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:29              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb0b21172 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:35:29             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:35:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xb0b21172', '0x2')]
20/10/2020 15:35:29             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:35:29              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:35:30              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:35:30              dut.10.240.183.67: flow list 0
20/10/2020 15:35:30              dut.10.240.183.67: 
20/10/2020 15:35:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:31              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:31             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:35:31             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:35:31             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:35:31             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_udp_l4src passed
20/10/2020 15:35:31              dut.10.240.183.67: flow flush 0
20/10/2020 15:35:31              dut.10.240.183.67: 
20/10/2020 15:35:31             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_udp_l4dst================
20/10/2020 15:35:31             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:35:31              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:35:31              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:35:31              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:35:31              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:35:31              dut.10.240.183.67: flow list 0
20/10/2020 15:35:31              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:35:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x7d1424d0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:32             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:35:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x7d1424d0', '0x0')]
20/10/2020 15:35:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:33              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x9a19e19e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x9a19e19e', '0xe')]
20/10/2020 15:35:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:34              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x7d1424d0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:35:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x7d1424d0', '0x0')]
20/10/2020 15:35:34             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:35:34              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:35:36              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:35:36              dut.10.240.183.67: flow list 0
20/10/2020 15:35:36              dut.10.240.183.67: 
20/10/2020 15:35:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:37             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 15:35:37             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_udp_l4dst passed
20/10/2020 15:35:37              dut.10.240.183.67: flow flush 0
20/10/2020 15:35:37              dut.10.240.183.67: 
20/10/2020 15:35:37             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv6_udp_all================
20/10/2020 15:35:37             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:35:37              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:35:37              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:35:37              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:35:37              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:35:37              dut.10.240.183.67: flow list 0
20/10/2020 15:35:37              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:35:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:38              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x602df75 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:35:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:35:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x602df75', '0x5')]
20/10/2020 15:35:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:39              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x430a4af0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x430a4af0', '0x0')]
20/10/2020 15:35:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:40              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x93874867 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:40             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x93874867', '0x7')]
20/10/2020 15:35:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:42              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x79960ad1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x79960ad1', '0x1')]
20/10/2020 15:35:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:43              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc2310c12 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:35:43             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2310c12', '0x2')]
20/10/2020 15:35:43             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:35:43              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:35:44              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:35:44              dut.10.240.183.67: flow list 0
20/10/2020 15:35:44              dut.10.240.183.67: 
20/10/2020 15:35:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:45              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:45             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:35:45             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:35:45             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:35:45             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv6_udp_all passed
20/10/2020 15:35:45              dut.10.240.183.67: flow flush 0
20/10/2020 15:35:45              dut.10.240.183.67: 
20/10/2020 15:35:45             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_udp_l3dst================
20/10/2020 15:35:45             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:35:45              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:35:45              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:35:45              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:35:45              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:35:45              dut.10.240.183.67: flow list 0
20/10/2020 15:35:45              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:35:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:46              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x7a40d0cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:46             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:35:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x7a40d0cb', '0xb')]
20/10/2020 15:35:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:47              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x9152ade2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:35:47             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x9152ade2', '0x2')]
20/10/2020 15:35:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:49              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x7a40d0cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:49             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:35:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x7a40d0cb', '0xb')]
20/10/2020 15:35:49             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:35:49              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:35:50              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:35:50              dut.10.240.183.67: flow list 0
20/10/2020 15:35:50              dut.10.240.183.67: 
20/10/2020 15:35:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:51              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:51             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:35:51             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:35:51             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:35:51             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_udp_l3dst passed
20/10/2020 15:35:51              dut.10.240.183.67: flow flush 0
20/10/2020 15:35:51              dut.10.240.183.67: 
20/10/2020 15:35:51             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_udp_l3src================
20/10/2020 15:35:51             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:35:51              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:35:51              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:35:51              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:35:51              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:35:51              dut.10.240.183.67: flow list 0
20/10/2020 15:35:51              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:35:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:52              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xea514b54 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:35:52             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:35:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xea514b54', '0x4')]
20/10/2020 15:35:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:53              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xea514b54 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:35:53             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:35:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xea514b54', '0x4')]
20/10/2020 15:35:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:54              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2e629833 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:35:54             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x2e629833', '0x3')]
20/10/2020 15:35:54             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:35:54              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:35:56              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:35:56              dut.10.240.183.67: flow list 0
20/10/2020 15:35:56              dut.10.240.183.67: 
20/10/2020 15:35:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:57              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:57             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:35:57             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:35:57             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:35:57             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_udp_l3src passed
20/10/2020 15:35:57              dut.10.240.183.67: flow flush 0
20/10/2020 15:35:57              dut.10.240.183.67: 
20/10/2020 15:35:57             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_udp_l3dst_l4src================
20/10/2020 15:35:57             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:35:57              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:35:57              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:35:57              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:35:57              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:35:57              dut.10.240.183.67: flow list 0
20/10/2020 15:35:57              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:35:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:58              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2b271860 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:58             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:35:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x2b271860', '0x0')]
20/10/2020 15:35:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:35:59              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc0356549 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:35:59             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:35:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xc0356549', '0x9')]
20/10/2020 15:35:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:00              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc581acaa - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:36:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xc581acaa', '0xa')]
20/10/2020 15:36:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:01              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2b271860 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:36:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x2b271860', '0x0')]
20/10/2020 15:36:01             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:36:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:36:03              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:36:03              dut.10.240.183.67: flow list 0
20/10/2020 15:36:03              dut.10.240.183.67: 
20/10/2020 15:36:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:04              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:04             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:36:04             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:36:04             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:36:04             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_udp_l3dst_l4src passed
20/10/2020 15:36:04              dut.10.240.183.67: flow flush 0
20/10/2020 15:36:04              dut.10.240.183.67: 
20/10/2020 15:36:04             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_udp_l3dst_l4dst================
20/10/2020 15:36:04             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:36:04              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:36:04              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:36:04              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:36:04              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:36:04              dut.10.240.183.67: flow list 0
20/10/2020 15:36:04              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:36:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:05              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x668b04e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:36:05             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:36:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x668b04e5', '0x5')]
20/10/2020 15:36:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:06              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x8d9979cc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:06             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:36:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x8d9979cc', '0xc')]
20/10/2020 15:36:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:07              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc581acaa - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:36:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xc581acaa', '0xa')]
20/10/2020 15:36:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:09              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x668b04e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:36:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:36:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x668b04e5', '0x5')]
20/10/2020 15:36:09             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:36:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:36:10              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:36:10              dut.10.240.183.67: flow list 0
20/10/2020 15:36:10              dut.10.240.183.67: 
20/10/2020 15:36:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:11              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:11             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:36:11             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:36:11             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:36:11             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_udp_l3dst_l4dst passed
20/10/2020 15:36:11              dut.10.240.183.67: flow flush 0
20/10/2020 15:36:11              dut.10.240.183.67: 
20/10/2020 15:36:11             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_udp_l3src_l4src================
20/10/2020 15:36:11             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:36:11              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:36:11              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:36:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:36:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:36:11              dut.10.240.183.67: flow list 0
20/10/2020 15:36:11              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:36:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:12              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbb3683ff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:12             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:36:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xbb3683ff', '0xf')]
20/10/2020 15:36:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:13              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x7f055098 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:36:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x7f055098', '0x8')]
20/10/2020 15:36:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:14              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x55903735 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:36:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:36:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x55903735', '0x5')]
20/10/2020 15:36:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:16              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xbb3683ff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:16             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:36:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xbb3683ff', '0xf')]
20/10/2020 15:36:16             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:36:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:36:17              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:36:17              dut.10.240.183.67: flow list 0
20/10/2020 15:36:17              dut.10.240.183.67: 
20/10/2020 15:36:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:18              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:18             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:36:18             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:36:18             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:36:18             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_udp_l3src_l4src passed
20/10/2020 15:36:18              dut.10.240.183.67: flow flush 0
20/10/2020 15:36:18              dut.10.240.183.67: 
20/10/2020 15:36:18             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_udp_l3src_l4dst================
20/10/2020 15:36:18             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:36:18              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:36:18              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:36:18              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:36:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:36:18              dut.10.240.183.67: flow list 0
20/10/2020 15:36:18              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:36:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:19              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xf69a9f7a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:19             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:36:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xf69a9f7a', '0xa')]
20/10/2020 15:36:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:20              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x32a94c1d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:36:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:36:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x32a94c1d', '0xd')]
20/10/2020 15:36:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:21              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x55903735 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:36:21             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:36:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x55903735', '0x5')]
20/10/2020 15:36:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:23              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xf69a9f7a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:23             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:36:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xf69a9f7a', '0xa')]
20/10/2020 15:36:23             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:36:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:36:24              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:36:24              dut.10.240.183.67: flow list 0
20/10/2020 15:36:24              dut.10.240.183.67: 
20/10/2020 15:36:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:25              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:25             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 15:36:25             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_udp_l3src_l4dst passed
20/10/2020 15:36:25              dut.10.240.183.67: flow flush 0
20/10/2020 15:36:25              dut.10.240.183.67: 
20/10/2020 15:36:25             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_udp_l4src================
20/10/2020 15:36:25             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:36:25              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:36:25              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:36:25              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:36:25              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:36:25              dut.10.240.183.67: flow list 0
20/10/2020 15:36:25              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:36:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:26              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb0b21172 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:36:26             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:36:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xb0b21172', '0x2')]
20/10/2020 15:36:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:27              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x57bfd43c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:36:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x57bfd43c', '0xc')]
20/10/2020 15:36:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:28              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb0b21172 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:36:28             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:36:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xb0b21172', '0x2')]
20/10/2020 15:36:28             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:36:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:36:30              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:36:30              dut.10.240.183.67: flow list 0
20/10/2020 15:36:30              dut.10.240.183.67: 
20/10/2020 15:36:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:31              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:31             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:36:31             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:36:31             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:36:31             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_udp_l4src passed
20/10/2020 15:36:31              dut.10.240.183.67: flow flush 0
20/10/2020 15:36:31              dut.10.240.183.67: 
20/10/2020 15:36:31             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_udp_l4dst================
20/10/2020 15:36:31             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:36:31              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:36:31              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:36:31              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:36:31              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:36:31              dut.10.240.183.67: flow list 0
20/10/2020 15:36:31              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:36:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x7d1424d0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:32             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:36:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x7d1424d0', '0x0')]
20/10/2020 15:36:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:33              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x9a19e19e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:36:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x9a19e19e', '0xe')]
20/10/2020 15:36:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:34              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x7d1424d0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:36:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x7d1424d0', '0x0')]
20/10/2020 15:36:34             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:36:34              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:36:36              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:36:36              dut.10.240.183.67: flow list 0
20/10/2020 15:36:36              dut.10.240.183.67: 
20/10/2020 15:36:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:37             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 15:36:37             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_udp_l4dst passed
20/10/2020 15:36:37              dut.10.240.183.67: flow flush 0
20/10/2020 15:36:37              dut.10.240.183.67: 
20/10/2020 15:36:37             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv6_udp_all================
20/10/2020 15:36:37             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:36:37              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:36:37              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:36:37              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:36:37              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:36:37              dut.10.240.183.67: flow list 0
20/10/2020 15:36:37              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:36:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:38              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x602df75 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:36:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:36:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x602df75', '0x5')]
20/10/2020 15:36:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:39              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x430a4af0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:36:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x430a4af0', '0x0')]
20/10/2020 15:36:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:40              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x93874867 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:40             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:36:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x93874867', '0x7')]
20/10/2020 15:36:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:41              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x79960ad1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:41             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:36:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x79960ad1', '0x1')]
20/10/2020 15:36:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:42              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc2310c12 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:36:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:36:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2310c12', '0x2')]
20/10/2020 15:36:42             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:36:42              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:36:44              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:36:44              dut.10.240.183.67: flow list 0
20/10/2020 15:36:44              dut.10.240.183.67: 
20/10/2020 15:36:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:36:45              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:36:45             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:36:45             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:36:45             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:36:45             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv6_udp_all passed
20/10/2020 15:36:45              dut.10.240.183.67: flow flush 0
20/10/2020 15:36:45              dut.10.240.183.67: 
20/10/2020 15:36:45             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l4src': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_udp_l4dst': 'passed', 'mac_ipv4_gtpu_eh_dl_ipv6_udp_all': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_udp_l3dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_udp_l3src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_udp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_udp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_udp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_udp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_udp_l4src': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_udp_l4dst': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv6_udp_all': 'passed'}
20/10/2020 15:36:45             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:36:45             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_udp Result PASSED:
20/10/2020 15:36:45              dut.10.240.183.67: flow flush 0
20/10/2020 15:36:46              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:36:46              dut.10.240.183.67: clear port stats all
20/10/2020 15:36:47              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:36:47              dut.10.240.183.67: stop
20/10/2020 15:36:47              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:36:47             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_udp_symmetric Begin
20/10/2020 15:36:47              dut.10.240.183.67: 
20/10/2020 15:36:48                         tester: 
20/10/2020 15:36:48              dut.10.240.183.67: start
20/10/2020 15:36:48              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:36:48              dut.10.240.183.67: quit
20/10/2020 15:36:49              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:36:49              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:36:50              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:37:00              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:37:01              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:37:01              dut.10.240.183.67: set verbose 1
20/10/2020 15:37:01              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:37:01              dut.10.240.183.67: show port info all
20/10/2020 15:37:01              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:37:01              dut.10.240.183.67: start
20/10/2020 15:37:01              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:37:01             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_dl_ipv4_udp_symmetric================
20/10/2020 15:37:01             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:37:01              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:37:01              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:37:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:37:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:37:01              dut.10.240.183.67: flow list 0
20/10/2020 15:37:01              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:37:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:02              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc9f02403 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:02             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:37:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xc9f02403', '0x3')]
20/10/2020 15:37:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:03              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc9f02403 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xc9f02403', '0x3')]
20/10/2020 15:37:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:04              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc9f02403 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:04             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xc9f02403', '0x3')]
20/10/2020 15:37:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:05              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc9f02403 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xc9f02403', '0x3')]
20/10/2020 15:37:05             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:37:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:37:07              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:37:07              dut.10.240.183.67: flow list 0
20/10/2020 15:37:07              dut.10.240.183.67: 
20/10/2020 15:37:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:08              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:08             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:37:08             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:37:08             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:37:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:09              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:09             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:37:09             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:37:09             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:37:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:10              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:10             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:37:10             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:37:10             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:37:10             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_dl_ipv4_udp_symmetric passed
20/10/2020 15:37:10              dut.10.240.183.67: flow flush 0
20/10/2020 15:37:10              dut.10.240.183.67: 
20/10/2020 15:37:10             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ul_ipv4_udp_symmetric================
20/10/2020 15:37:10             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:37:10              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:37:10              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:37:10              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:37:10              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:37:10              dut.10.240.183.67: flow list 0
20/10/2020 15:37:10              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:37:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:11              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc9f02403 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:11             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:37:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xc9f02403', '0x3')]
20/10/2020 15:37:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:12              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc9f02403 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xc9f02403', '0x3')]
20/10/2020 15:37:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:13              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc9f02403 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xc9f02403', '0x3')]
20/10/2020 15:37:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:15              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xc9f02403 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:15             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xc9f02403', '0x3')]
20/10/2020 15:37:15             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:37:15              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:37:16              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:37:16              dut.10.240.183.67: flow list 0
20/10/2020 15:37:16              dut.10.240.183.67: 
20/10/2020 15:37:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:17              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:17             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:37:17             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:37:17             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:37:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:18              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:18             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:37:18             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:37:18             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:37:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:19              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:19             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:37:19             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:37:19             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:37:19             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ul_ipv4_udp_symmetric passed
20/10/2020 15:37:19              dut.10.240.183.67: flow flush 0
20/10/2020 15:37:19              dut.10.240.183.67: 
20/10/2020 15:37:19             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_dl_ipv4_udp_symmetric': 'passed', 'mac_ipv4_gtpu_eh_ul_ipv4_udp_symmetric': 'passed'}
20/10/2020 15:37:19             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:37:19             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_udp_symmetric Result PASSED:
20/10/2020 15:37:19              dut.10.240.183.67: flow flush 0
20/10/2020 15:37:20              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:37:20              dut.10.240.183.67: clear port stats all
20/10/2020 15:37:22              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:37:22              dut.10.240.183.67: stop
20/10/2020 15:37:22              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:37:22             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_udp_without_ul_dl Begin
20/10/2020 15:37:22              dut.10.240.183.67: 
20/10/2020 15:37:22                         tester: 
20/10/2020 15:37:22              dut.10.240.183.67: start
20/10/2020 15:37:22              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:37:22             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3src================
20/10/2020 15:37:22             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:37:22              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:37:22              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:37:22              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:37:22              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:37:22              dut.10.240.183.67: flow list 0
20/10/2020 15:37:22              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:37:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:23              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x59dad626 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:23             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:37:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x59dad626', '0x6')]
20/10/2020 15:37:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:24              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x59dad626 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x59dad626', '0x6')]
20/10/2020 15:37:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:25              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x868d422 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:37:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x868d422', '0x2')]
20/10/2020 15:37:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:27              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x59dad626 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:37:27             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x59dad626', '0x6')]
20/10/2020 15:37:27             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:37:27              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:37:28              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:37:28              dut.10.240.183.67: flow list 0
20/10/2020 15:37:28              dut.10.240.183.67: 
20/10/2020 15:37:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:29              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:29             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:37:29             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:37:29             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:37:29             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3src passed
20/10/2020 15:37:29              dut.10.240.183.67: flow flush 0
20/10/2020 15:37:29              dut.10.240.183.67: 
20/10/2020 15:37:29             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3dst================
20/10/2020 15:37:29             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:37:29              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:37:29              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:37:29              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:37:29              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:37:29              dut.10.240.183.67: flow list 0
20/10/2020 15:37:29              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:37:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:30              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x58ddf73f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:30             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:37:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x58ddf73f', '0xf')]
20/10/2020 15:37:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:31              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x58ddf73f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:31             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x58ddf73f', '0xf')]
20/10/2020 15:37:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:32              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd94ec762 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:37:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xd94ec762', '0x2')]
20/10/2020 15:37:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:34              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x58ddf73f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x58ddf73f', '0xf')]
20/10/2020 15:37:34             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:37:34              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:37:35              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:37:35              dut.10.240.183.67: flow list 0
20/10/2020 15:37:35              dut.10.240.183.67: 
20/10/2020 15:37:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:36              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:36             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:37:36             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:37:36             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:37:36             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3dst passed
20/10/2020 15:37:36              dut.10.240.183.67: flow flush 0
20/10/2020 15:37:36              dut.10.240.183.67: 
20/10/2020 15:37:36             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3src_l4dst================
20/10/2020 15:37:36             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:37:36              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:37:36              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:37:36              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:37:36              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:37:36              dut.10.240.183.67: flow list 0
20/10/2020 15:37:36              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:37:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:37              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xe2f59dee - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:37             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:37:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xe2f59dee', '0xe')]
20/10/2020 15:37:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:38              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x316bdfa5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:37:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x316bdfa5', '0x5')]
20/10/2020 15:37:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:39              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb3479fea - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:37:39             TestCVLIAVFRSSGTPU: hash_infos: [('0xb3479fea', '0xa')]
20/10/2020 15:37:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:41              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xe2f59dee - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:41             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xe2f59dee', '0xe')]
20/10/2020 15:37:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:42              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xe2f59dee - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:42             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xe2f59dee', '0xe')]
20/10/2020 15:37:42             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:37:42              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:37:43              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:37:43              dut.10.240.183.67: flow list 0
20/10/2020 15:37:43              dut.10.240.183.67: 
20/10/2020 15:37:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:44              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:44             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:37:44             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:37:44             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:37:44             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3src_l4dst passed
20/10/2020 15:37:44              dut.10.240.183.67: flow flush 0
20/10/2020 15:37:44              dut.10.240.183.67: 
20/10/2020 15:37:44             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3dst_l4src================
20/10/2020 15:37:44             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:37:44              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:37:44              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:37:44              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:37:44              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:37:44              dut.10.240.183.67: flow list 0
20/10/2020 15:37:44              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:37:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:45              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x84e19de0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:45             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:37:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x84e19de0', '0x0')]
20/10/2020 15:37:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:47              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x83e56e37 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:47             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:37:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x83e56e37', '0x7')]
20/10/2020 15:37:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:48              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x572adbd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:37:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x572adbd', '0xd')]
20/10/2020 15:37:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:49              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x84e19de0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:49             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x84e19de0', '0x0')]
20/10/2020 15:37:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:50              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x84e19de0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x84e19de0', '0x0')]
20/10/2020 15:37:50             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:37:50              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:37:51              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:37:51              dut.10.240.183.67: flow list 0
20/10/2020 15:37:51              dut.10.240.183.67: 
20/10/2020 15:37:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:52              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:52             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:37:52             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:37:52             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:37:52             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3dst_l4src passed
20/10/2020 15:37:52              dut.10.240.183.67: flow flush 0
20/10/2020 15:37:52              dut.10.240.183.67: 
20/10/2020 15:37:52             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3src_l4src================
20/10/2020 15:37:52             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:37:52              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:37:52              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:37:52              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:37:52              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:37:52              dut.10.240.183.67: flow list 0
20/10/2020 15:37:52              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:37:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:54              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x85e6bcf9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:37:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x85e6bcf9', '0x9')]
20/10/2020 15:37:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:55              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x82e24f2e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:37:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x82e24f2e', '0xe')]
20/10/2020 15:37:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:56              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd454befd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:37:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:37:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xd454befd', '0xd')]
20/10/2020 15:37:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:57              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x85e6bcf9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:57             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x85e6bcf9', '0x9')]
20/10/2020 15:37:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:37:58              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x85e6bcf9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:37:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:37:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x85e6bcf9', '0x9')]
20/10/2020 15:37:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:37:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:37:59              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:37:59              dut.10.240.183.67: flow list 0
20/10/2020 15:37:59              dut.10.240.183.67: 
20/10/2020 15:37:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:00              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:00             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:38:00             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:38:00             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:38:00             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3src_l4src passed
20/10/2020 15:38:00              dut.10.240.183.67: flow flush 0
20/10/2020 15:38:00              dut.10.240.183.67: 
20/10/2020 15:38:00             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3dst_l4dst================
20/10/2020 15:38:00             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:38:00              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:38:00              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:38:00              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:38:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:38:01              dut.10.240.183.67: flow list 0
20/10/2020 15:38:01              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:38:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:02              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xe3f2bcf7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:02             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:38:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xe3f2bcf7', '0x7')]
20/10/2020 15:38:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:03              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x306cfebc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:38:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x306cfebc', '0xc')]
20/10/2020 15:38:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:04              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x62618caa - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:38:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x62618caa', '0xa')]
20/10/2020 15:38:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:05              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xe3f2bcf7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:38:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xe3f2bcf7', '0x7')]
20/10/2020 15:38:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:06              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xe3f2bcf7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:38:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xe3f2bcf7', '0x7')]
20/10/2020 15:38:06             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:38:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:38:07              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:38:07              dut.10.240.183.67: flow list 0
20/10/2020 15:38:07              dut.10.240.183.67: 
20/10/2020 15:38:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:08              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:08             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:38:08             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:38:08             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:38:08             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3dst_l4dst passed
20/10/2020 15:38:08              dut.10.240.183.67: flow flush 0
20/10/2020 15:38:08              dut.10.240.183.67: 
20/10/2020 15:38:08             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l4src_only================
20/10/2020 15:38:08             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:38:08              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:38:09              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:38:09              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:38:09              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:38:09              dut.10.240.183.67: flow list 0
20/10/2020 15:38:09              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:38:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:10              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x827a7efe - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:10             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:38:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x827a7efe', '0xe')]
20/10/2020 15:38:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:11              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x565d9a61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:38:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x565d9a61', '0x1')]
20/10/2020 15:38:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:12              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x827a7efe - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:38:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x827a7efe', '0xe')]
20/10/2020 15:38:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:13              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x827a7efe - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:38:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x827a7efe', '0xe')]
20/10/2020 15:38:13             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:38:13              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:38:14              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:38:14              dut.10.240.183.67: flow list 0
20/10/2020 15:38:14              dut.10.240.183.67: 
20/10/2020 15:38:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:15              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:15             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:38:15             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:38:15             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:38:15             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l4src_only passed
20/10/2020 15:38:15              dut.10.240.183.67: flow flush 0
20/10/2020 15:38:15              dut.10.240.183.67: 
20/10/2020 15:38:15             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l4dst_only================
20/10/2020 15:38:15             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:38:15              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:38:16              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:38:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:38:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:38:16              dut.10.240.183.67: flow list 0
20/10/2020 15:38:16              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:38:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:17              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd96dff16 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:38:17             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:38:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xd96dff16', '0x6')]
20/10/2020 15:38:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:18              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xfbd65a95 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:38:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:38:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbd65a95', '0x5')]
20/10/2020 15:38:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:19              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd96dff16 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:38:19             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:38:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xd96dff16', '0x6')]
20/10/2020 15:38:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:20              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd96dff16 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:38:20             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:38:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xd96dff16', '0x6')]
20/10/2020 15:38:20             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:38:20              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:38:21              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:38:21              dut.10.240.183.67: flow list 0
20/10/2020 15:38:21              dut.10.240.183.67: 
20/10/2020 15:38:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:22              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:22             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:38:22             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:38:22             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:38:22             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l4dst_only passed
20/10/2020 15:38:22              dut.10.240.183.67: flow flush 0
20/10/2020 15:38:23              dut.10.240.183.67: 
20/10/2020 15:38:23             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp================
20/10/2020 15:38:23             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:38:23              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:38:23              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:38:23              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:38:23              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:38:23              dut.10.240.183.67: flow list 0
20/10/2020 15:38:23              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:38:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:24              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x97509539 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:24             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:38:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x97509539', '0x9')]
20/10/2020 15:38:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:25              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x9a26568e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:38:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x9a26568e', '0xe')]
20/10/2020 15:38:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:26              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x54e7c455 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:38:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:38:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x54e7c455', '0x5')]
20/10/2020 15:38:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:27              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd362b9f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:38:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xd362b9f', '0xf')]
20/10/2020 15:38:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:28              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xc6e2973d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:38:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:38:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xc6e2973d', '0xd')]
20/10/2020 15:38:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:29              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x97509539 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:29             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:38:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x97509539', '0x9')]
20/10/2020 15:38:29             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:38:29              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:38:30              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:38:30              dut.10.240.183.67: flow list 0
20/10/2020 15:38:31              dut.10.240.183.67: 
20/10/2020 15:38:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:32             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:38:32             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:38:32             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:38:32             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp passed
20/10/2020 15:38:32              dut.10.240.183.67: flow flush 0
20/10/2020 15:38:32              dut.10.240.183.67: 
20/10/2020 15:38:32             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l4src_only': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp_l4dst_only': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_udp': 'passed'}
20/10/2020 15:38:32             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:38:32             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_udp_without_ul_dl Result PASSED:
20/10/2020 15:38:32              dut.10.240.183.67: flow flush 0
20/10/2020 15:38:33              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:38:33              dut.10.240.183.67: clear port stats all
20/10/2020 15:38:34              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:38:34              dut.10.240.183.67: stop
20/10/2020 15:38:34              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:38:34             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_udp_without_ul_dl_symmetric Begin
20/10/2020 15:38:34              dut.10.240.183.67: 
20/10/2020 15:38:34                         tester: 
20/10/2020 15:38:34              dut.10.240.183.67: start
20/10/2020 15:38:34              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:38:34              dut.10.240.183.67: quit
20/10/2020 15:38:36              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:38:36              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:38:37              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:38:47              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:38:47              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:38:47              dut.10.240.183.67: set verbose 1
20/10/2020 15:38:47              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:38:47              dut.10.240.183.67: show port info all
20/10/2020 15:38:47              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:38:47              dut.10.240.183.67: start
20/10/2020 15:38:47              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:38:47             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ipv6_udp_without_ul_dl_symmetric================
20/10/2020 15:38:47             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:38:47              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss func symmetric_toeplitz types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:38:47              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:38:47              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss func symmetric_toeplitz types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:38:48              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:38:48              dut.10.240.183.67: flow list 0
20/10/2020 15:38:48              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 15:38:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:49              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x740621d7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:49             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-dl'}

20/10/2020 15:38:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x740621d7', '0x7')]
20/10/2020 15:38:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:50              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x740621d7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:38:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x740621d7', '0x7')]
20/10/2020 15:38:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:51              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x740621d7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:38:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x740621d7', '0x7')]
20/10/2020 15:38:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:52              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x740621d7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:38:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x740621d7', '0x7')]
20/10/2020 15:38:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:53              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x740621d7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:53             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-ul'}

20/10/2020 15:38:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x740621d7', '0x7')]
20/10/2020 15:38:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:54              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x740621d7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:38:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x740621d7', '0x7')]
20/10/2020 15:38:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:55              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x740621d7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:38:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x740621d7', '0x7')]
20/10/2020 15:38:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:56              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x740621d7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:56             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:38:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x740621d7', '0x7')]
20/10/2020 15:38:56             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:38:56              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:38:58              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:38:58              dut.10.240.183.67: flow list 0
20/10/2020 15:38:58              dut.10.240.183.67: 
20/10/2020 15:38:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:38:59              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:38:59             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:38:59             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:38:59             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:38:59             TestCVLIAVFRSSGTPU: action: udp-dl

20/10/2020 15:38:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:00              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:00             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:39:00             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:39:00             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:39:00             TestCVLIAVFRSSGTPU: action: udp-ul

20/10/2020 15:39:00             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ipv6_udp_without_ul_dl_symmetric passed
20/10/2020 15:39:00              dut.10.240.183.67: flow flush 0
20/10/2020 15:39:00              dut.10.240.183.67: 
20/10/2020 15:39:00             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_ipv6_udp_without_ul_dl_symmetric': 'passed'}
20/10/2020 15:39:00             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:39:00             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_udp_without_ul_dl_symmetric Result PASSED:
20/10/2020 15:39:00              dut.10.240.183.67: flow flush 0
20/10/2020 15:39:01              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:39:01              dut.10.240.183.67: clear port stats all
20/10/2020 15:39:02              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:39:02              dut.10.240.183.67: stop
20/10/2020 15:39:02              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:39:02             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_without_ul_dl Begin
20/10/2020 15:39:02              dut.10.240.183.67: 
20/10/2020 15:39:03                         tester: 
20/10/2020 15:39:03              dut.10.240.183.67: start
20/10/2020 15:39:03              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:39:03             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_l3dst================
20/10/2020 15:39:03             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:39:03              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:39:03              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:39:03              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:39:03              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:39:03              dut.10.240.183.67: flow list 0
20/10/2020 15:39:03              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 15:39:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:04              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xb3b333f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:04             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xb3b333f5', '0x5')]
20/10/2020 15:39:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:05              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x732a25c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:05             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x732a25c5', '0x5')]
20/10/2020 15:39:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:06              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xb3b333f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:39:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:39:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xb3b333f5', '0x5')]
20/10/2020 15:39:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:07              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xb3b333f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:07             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xb3b333f5', '0x5')]
20/10/2020 15:39:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:08              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x732a25c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x732a25c5', '0x5')]
20/10/2020 15:39:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:09              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xb3b333f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:39:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:39:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xb3b333f5', '0x5')]
20/10/2020 15:39:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:11              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb3b333f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:11             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xb3b333f5', '0x5')]
20/10/2020 15:39:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:12              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x732a25c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:12             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x732a25c5', '0x5')]
20/10/2020 15:39:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:13              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb3b333f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:39:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:39:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xb3b333f5', '0x5')]
20/10/2020 15:39:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:14              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb3b333f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:14             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xb3b333f5', '0x5')]
20/10/2020 15:39:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:15              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x732a25c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x732a25c5', '0x5')]
20/10/2020 15:39:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:16              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb3b333f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:39:16             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:39:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xb3b333f5', '0x5')]
20/10/2020 15:39:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:17              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb3b333f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:17             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xb3b333f5', '0x5')]
20/10/2020 15:39:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:18              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x732a25c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x732a25c5', '0x5')]
20/10/2020 15:39:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:19              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb3b333f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:39:19             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:39:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xb3b333f5', '0x5')]
20/10/2020 15:39:19             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:39:19              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:39:21              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:39:21              dut.10.240.183.67: flow list 0
20/10/2020 15:39:21              dut.10.240.183.67: 
20/10/2020 15:39:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:22              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:22             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:39:22             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:39:22             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:39:22             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_l3dst passed
20/10/2020 15:39:22              dut.10.240.183.67: flow flush 0
20/10/2020 15:39:22              dut.10.240.183.67: 
20/10/2020 15:39:22             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_l3src================
20/10/2020 15:39:22             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:39:22              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 15:39:22              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:39:22              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 15:39:22              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:39:22              dut.10.240.183.67: flow list 0
20/10/2020 15:39:22              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 15:39:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:23              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xd425b16b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:23             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xd425b16b', '0xb')]
20/10/2020 15:39:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:24              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xfed25924 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xfed25924', '0x4')]
20/10/2020 15:39:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:25              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xd425b16b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:25             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:39:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xd425b16b', '0xb')]
20/10/2020 15:39:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:26              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xd425b16b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:26             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xd425b16b', '0xb')]
20/10/2020 15:39:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:28              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xfed25924 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xfed25924', '0x4')]
20/10/2020 15:39:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:29              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xd425b16b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:29             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:39:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xd425b16b', '0xb')]
20/10/2020 15:39:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:30              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd425b16b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:30             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xd425b16b', '0xb')]
20/10/2020 15:39:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:31              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xfed25924 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xfed25924', '0x4')]
20/10/2020 15:39:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:32              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd425b16b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:32             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:39:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xd425b16b', '0xb')]
20/10/2020 15:39:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:33              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd425b16b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:33             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xd425b16b', '0xb')]
20/10/2020 15:39:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:34              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xfed25924 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:34             TestCVLIAVFRSSGTPU: hash_infos: [('0xfed25924', '0x4')]
20/10/2020 15:39:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:35              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd425b16b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:35             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:39:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xd425b16b', '0xb')]
20/10/2020 15:39:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:36              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd425b16b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:36             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:36             TestCVLIAVFRSSGTPU: hash_infos: [('0xd425b16b', '0xb')]
20/10/2020 15:39:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:37              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xfed25924 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:37             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xfed25924', '0x4')]
20/10/2020 15:39:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:39              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xd425b16b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:39             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:39:39             TestCVLIAVFRSSGTPU: hash_infos: [('0xd425b16b', '0xb')]
20/10/2020 15:39:39             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:39:39              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:39:40              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:39:40              dut.10.240.183.67: flow list 0
20/10/2020 15:39:40              dut.10.240.183.67: 
20/10/2020 15:39:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:41              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:41             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:39:41             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:39:41             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:39:41             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_l3src passed
20/10/2020 15:39:41              dut.10.240.183.67: flow flush 0
20/10/2020 15:39:41              dut.10.240.183.67: 
20/10/2020 15:39:41             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_without_ul_dl_ipv6_all================
20/10/2020 15:39:41             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:39:41              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 15:39:41              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:39:41              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 15:39:41              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:39:41              dut.10.240.183.67: flow list 0
20/10/2020 15:39:41              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 15:39:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:42              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xa2ae02c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:42             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xa2ae02c5', '0x5')]
20/10/2020 15:39:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:43              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xce4a3e3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:43             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xce4a3e3', '0x3')]
20/10/2020 15:39:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:44              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x8859ea8a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x8859ea8a', '0xa')]
20/10/2020 15:39:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:46              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x26134bac - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x26134bac', '0xc')]
20/10/2020 15:39:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:47              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xa2ae02c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:39:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:39:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xa2ae02c5', '0x5')]
20/10/2020 15:39:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:48              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xa2ae02c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xa2ae02c5', '0x5')]
20/10/2020 15:39:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:49              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xce4a3e3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xce4a3e3', '0x3')]
20/10/2020 15:39:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:50              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x8859ea8a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x8859ea8a', '0xa')]
20/10/2020 15:39:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:51              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x26134bac - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x26134bac', '0xc')]
20/10/2020 15:39:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:52              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0xa2ae02c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:39:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:39:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xa2ae02c5', '0x5')]
20/10/2020 15:39:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:53              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xa2ae02c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:53             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xa2ae02c5', '0x5')]
20/10/2020 15:39:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:54              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xce4a3e3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:54             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xce4a3e3', '0x3')]
20/10/2020 15:39:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:55              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x8859ea8a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x8859ea8a', '0xa')]
20/10/2020 15:39:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:57              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x26134bac - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:39:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:39:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x26134bac', '0xc')]
20/10/2020 15:39:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:58              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xa2ae02c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:39:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:39:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xa2ae02c5', '0x5')]
20/10/2020 15:39:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:39:59              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xa2ae02c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:39:59             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:39:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xa2ae02c5', '0x5')]
20/10/2020 15:39:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:00              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xce4a3e3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:40:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xce4a3e3', '0x3')]
20/10/2020 15:40:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:01              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x8859ea8a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:40:01             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:40:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x8859ea8a', '0xa')]
20/10/2020 15:40:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:02              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x26134bac - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:40:02             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:40:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x26134bac', '0xc')]
20/10/2020 15:40:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:03              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xa2ae02c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:40:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:40:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xa2ae02c5', '0x5')]
20/10/2020 15:40:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:04              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xa2ae02c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:04             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:40:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xa2ae02c5', '0x5')]
20/10/2020 15:40:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:05              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xce4a3e3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:05             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:40:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xce4a3e3', '0x3')]
20/10/2020 15:40:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:06              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x8859ea8a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:40:06             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:40:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x8859ea8a', '0xa')]
20/10/2020 15:40:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:08              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x26134bac - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:40:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:40:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x26134bac', '0xc')]
20/10/2020 15:40:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:09              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xa2ae02c5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:40:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:40:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xa2ae02c5', '0x5')]
20/10/2020 15:40:09             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:40:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:40:10              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:40:10              dut.10.240.183.67: flow list 0
20/10/2020 15:40:10              dut.10.240.183.67: 
20/10/2020 15:40:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:11              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:40:11             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:40:11             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:40:11             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:40:11             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_without_ul_dl_ipv6_all passed
20/10/2020 15:40:11              dut.10.240.183.67: flow flush 0
20/10/2020 15:40:11              dut.10.240.183.67: 
20/10/2020 15:40:11             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_l3dst': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_l3src': 'passed', 'mac_ipv4_gtpu_eh_without_ul_dl_ipv6_all': 'passed'}
20/10/2020 15:40:11             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:40:11             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_without_ul_dl Result PASSED:
20/10/2020 15:40:11              dut.10.240.183.67: flow flush 0
20/10/2020 15:40:12              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:40:12              dut.10.240.183.67: clear port stats all
20/10/2020 15:40:13              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:40:13              dut.10.240.183.67: stop
20/10/2020 15:40:14              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:40:14             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_without_ul_dl_symmetric Begin
20/10/2020 15:40:14              dut.10.240.183.67: 
20/10/2020 15:40:14                         tester: 
20/10/2020 15:40:14              dut.10.240.183.67: start
20/10/2020 15:40:14              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:40:14              dut.10.240.183.67: quit
20/10/2020 15:40:15              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:40:15              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:40:17              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:40:27              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:40:27              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:40:27              dut.10.240.183.67: set verbose 1
20/10/2020 15:40:27              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:40:27              dut.10.240.183.67: show port info all
20/10/2020 15:40:27              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:40:27              dut.10.240.183.67: start
20/10/2020 15:40:27              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:40:27             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_eh_ipv6_without_ul_dl_symmetric================
20/10/2020 15:40:27             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:40:27              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 15:40:27              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:40:27              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc / ipv6 / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 15:40:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:40:27              dut.10.240.183.67: flow list 0
20/10/2020 15:40:27              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 15:40:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:28              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x6ecbb87d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:28             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 15:40:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ecbb87d', '0xd')]
20/10/2020 15:40:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:29              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x6ecbb87d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:29             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:40:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ecbb87d', '0xd')]
20/10/2020 15:40:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:30              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x6ecbb87d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:30             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 15:40:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ecbb87d', '0xd')]
20/10/2020 15:40:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:32              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x6ecbb87d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:32             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:40:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ecbb87d', '0xd')]
20/10/2020 15:40:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:33              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x6ecbb87d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:33             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 15:40:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ecbb87d', '0xd')]
20/10/2020 15:40:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:34              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x6ecbb87d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:40:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ecbb87d', '0xd')]
20/10/2020 15:40:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:35              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x6ecbb87d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:35             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 15:40:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ecbb87d', '0xd')]
20/10/2020 15:40:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:36              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x6ecbb87d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:40:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ecbb87d', '0xd')]
20/10/2020 15:40:36             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:40:36              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:40:37              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:40:37              dut.10.240.183.67: flow list 0
20/10/2020 15:40:37              dut.10.240.183.67: 
20/10/2020 15:40:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:38              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:40:38             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 15:40:38             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:40:38             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:40:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:39              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:40:39             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 15:40:39             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:40:39             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:40:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:40              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:40:40             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 15:40:40             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:40:40             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:40:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:42              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:40:42             TestCVLIAVFRSSGTPU: action: ipv4-udp

20/10/2020 15:40:42             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:40:42             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:40:42             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:40:42             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_eh_ipv6_without_ul_dl_symmetric passed
20/10/2020 15:40:42              dut.10.240.183.67: flow flush 0
20/10/2020 15:40:42              dut.10.240.183.67: 
20/10/2020 15:40:42             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_eh_ipv6_without_ul_dl_symmetric': 'passed'}
20/10/2020 15:40:42             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:40:42             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_eh_ipv6_without_ul_dl_symmetric Result PASSED:
20/10/2020 15:40:42              dut.10.240.183.67: flow flush 0
20/10/2020 15:40:43              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:40:43              dut.10.240.183.67: clear port stats all
20/10/2020 15:40:44              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:40:44              dut.10.240.183.67: stop
20/10/2020 15:40:44              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:40:44             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv4 Begin
20/10/2020 15:40:44              dut.10.240.183.67: 
20/10/2020 15:40:44                         tester: 
20/10/2020 15:40:44              dut.10.240.183.67: start
20/10/2020 15:40:44              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:40:44             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_l3dst================
20/10/2020 15:40:44             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:40:44              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:40:44              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:40:44              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:40:44              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:40:44              dut.10.240.183.67: flow list 0
20/10/2020 15:40:45              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 => RSS
20/10/2020 15:40:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:46              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0xeb703e24 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:46             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:40:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xeb703e24', '0x4')]
20/10/2020 15:40:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:47              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x6a9e96a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:40:47             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:40:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x6a9e96a', '0xa')]
20/10/2020 15:40:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:48              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0xeb703e24 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:48             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:40:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xeb703e24', '0x4')]
20/10/2020 15:40:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:49              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0xeb703e24 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:49             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:40:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xeb703e24', '0x4')]
20/10/2020 15:40:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:50              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x6a9e96a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:40:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:40:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x6a9e96a', '0xa')]
20/10/2020 15:40:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:51              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0xeb703e24 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:40:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xeb703e24', '0x4')]
20/10/2020 15:40:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:52              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xeb703e24 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:52             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:40:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xeb703e24', '0x4')]
20/10/2020 15:40:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:53              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x6a9e96a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:40:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:40:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x6a9e96a', '0xa')]
20/10/2020 15:40:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:54              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xeb703e24 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:40:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xeb703e24', '0x4')]
20/10/2020 15:40:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:56              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xeb703e24 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:56             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:40:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xeb703e24', '0x4')]
20/10/2020 15:40:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:57              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x6a9e96a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:40:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:40:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x6a9e96a', '0xa')]
20/10/2020 15:40:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:58              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xeb703e24 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:40:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xeb703e24', '0x4')]
20/10/2020 15:40:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:40:59              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xeb703e24 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:40:59             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:40:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xeb703e24', '0x4')]
20/10/2020 15:40:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:00              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x6a9e96a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x6a9e96a', '0xa')]
20/10/2020 15:41:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:01              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xeb703e24 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:41:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:41:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xeb703e24', '0x4')]
20/10/2020 15:41:01             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:41:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:41:02              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:41:02              dut.10.240.183.67: flow list 0
20/10/2020 15:41:02              dut.10.240.183.67: 
20/10/2020 15:41:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:03              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:03             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:41:03             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:41:03             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:41:03             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_l3dst passed
20/10/2020 15:41:03              dut.10.240.183.67: flow flush 0
20/10/2020 15:41:03              dut.10.240.183.67: 
20/10/2020 15:41:03             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_l3src================
20/10/2020 15:41:03             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:41:03              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:41:04              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:41:04              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:41:04              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:41:04              dut.10.240.183.67: flow list 0
20/10/2020 15:41:04              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 => RSS
20/10/2020 15:41:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:05              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0xde4cd72c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:05             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xde4cd72c', '0xc')]
20/10/2020 15:41:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:06              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0xde4cd72c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:41:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xde4cd72c', '0xc')]
20/10/2020 15:41:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:07              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x33950062 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:41:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x33950062', '0x2')]
20/10/2020 15:41:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:08              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0xde4cd72c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:08             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xde4cd72c', '0xc')]
20/10/2020 15:41:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:09              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0xde4cd72c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:41:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xde4cd72c', '0xc')]
20/10/2020 15:41:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:10              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x33950062 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:41:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x33950062', '0x2')]
20/10/2020 15:41:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:11              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xde4cd72c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:11             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xde4cd72c', '0xc')]
20/10/2020 15:41:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:12              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xde4cd72c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:41:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xde4cd72c', '0xc')]
20/10/2020 15:41:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:14              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x33950062 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:41:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x33950062', '0x2')]
20/10/2020 15:41:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:15              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xde4cd72c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:15             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xde4cd72c', '0xc')]
20/10/2020 15:41:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:16              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xde4cd72c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:16             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:41:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xde4cd72c', '0xc')]
20/10/2020 15:41:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:17              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x33950062 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:41:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x33950062', '0x2')]
20/10/2020 15:41:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:18              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xde4cd72c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:18             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xde4cd72c', '0xc')]
20/10/2020 15:41:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:19              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xde4cd72c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:19             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:41:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xde4cd72c', '0xc')]
20/10/2020 15:41:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:20              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x33950062 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:41:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x33950062', '0x2')]
20/10/2020 15:41:20             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:41:20              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:41:21              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:41:21              dut.10.240.183.67: flow list 0
20/10/2020 15:41:21              dut.10.240.183.67: 
20/10/2020 15:41:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:23              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:23             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:41:23             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:41:23             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:41:23             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_l3src passed
20/10/2020 15:41:23              dut.10.240.183.67: flow flush 0
20/10/2020 15:41:23              dut.10.240.183.67: 
20/10/2020 15:41:23             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_all================
20/10/2020 15:41:23             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:41:23              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 15:41:23              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:41:23              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 15:41:23              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:41:23              dut.10.240.183.67: flow list 0
20/10/2020 15:41:23              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 => RSS
20/10/2020 15:41:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:24              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x78d31bc4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:41:24             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x78d31bc4', '0x4')]
20/10/2020 15:41:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:25              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x775c5a3e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x775c5a3e', '0xe')]
20/10/2020 15:41:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:26              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x950acc8a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x950acc8a', '0xa')]
20/10/2020 15:41:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:27              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x9a858d70 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x9a858d70', '0x0')]
20/10/2020 15:41:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:28              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x78d31bc4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:41:28             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x78d31bc4', '0x4')]
20/10/2020 15:41:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:29              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x775c5a3e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x775c5a3e', '0xe')]
20/10/2020 15:41:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:30              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x950acc8a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x950acc8a', '0xa')]
20/10/2020 15:41:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x9a858d70 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x9a858d70', '0x0')]
20/10/2020 15:41:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:33              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x78d31bc4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:41:33             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x78d31bc4', '0x4')]
20/10/2020 15:41:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:34              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x775c5a3e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x775c5a3e', '0xe')]
20/10/2020 15:41:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:35              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x950acc8a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:35             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x950acc8a', '0xa')]
20/10/2020 15:41:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:36              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x9a858d70 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x9a858d70', '0x0')]
20/10/2020 15:41:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:37              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x78d31bc4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:41:37             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x78d31bc4', '0x4')]
20/10/2020 15:41:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:38              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x775c5a3e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x775c5a3e', '0xe')]
20/10/2020 15:41:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:39              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x950acc8a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x950acc8a', '0xa')]
20/10/2020 15:41:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:40              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x9a858d70 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:40             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x9a858d70', '0x0')]
20/10/2020 15:41:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:41              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x78d31bc4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:41:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x78d31bc4', '0x4')]
20/10/2020 15:41:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:43              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x775c5a3e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:43             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x775c5a3e', '0xe')]
20/10/2020 15:41:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:44              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x950acc8a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x950acc8a', '0xa')]
20/10/2020 15:41:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:45              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x9a858d70 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x9a858d70', '0x0')]
20/10/2020 15:41:45             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:41:45              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:41:46              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:41:46              dut.10.240.183.67: flow list 0
20/10/2020 15:41:46              dut.10.240.183.67: 
20/10/2020 15:41:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:47              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:47             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:41:47             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:41:47             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:41:47             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_all passed
20/10/2020 15:41:47              dut.10.240.183.67: flow flush 0
20/10/2020 15:41:47              dut.10.240.183.67: 
20/10/2020 15:41:47             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_gtpu================
20/10/2020 15:41:47             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:41:47              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss types gtpu end key_len 0 queues end / end
20/10/2020 15:41:47              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:41:47              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss types gtpu end key_len 0 queues end / end
20/10/2020 15:41:47              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:41:47              dut.10.240.183.67: flow list 0
20/10/2020 15:41:47              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 => RSS
20/10/2020 15:41:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:49              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0xf9794a37 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:49             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9794a37', '0x7')]
20/10/2020 15:41:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:50              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x3e73eb30 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e73eb30', '0x0')]
20/10/2020 15:41:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:51              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0xf9794a37 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:41:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9794a37', '0x7')]
20/10/2020 15:41:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:52              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0xf9794a37 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:52             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9794a37', '0x7')]
20/10/2020 15:41:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:53              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x3e73eb30 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e73eb30', '0x0')]
20/10/2020 15:41:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:54              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0xf9794a37 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:41:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9794a37', '0x7')]
20/10/2020 15:41:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:55              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xf9794a37 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:55             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9794a37', '0x7')]
20/10/2020 15:41:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:56              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x3e73eb30 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:41:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e73eb30', '0x0')]
20/10/2020 15:41:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:57              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xf9794a37 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:57             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:41:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9794a37', '0x7')]
20/10/2020 15:41:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:41:58              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xf9794a37 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:41:58             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:41:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9794a37', '0x7')]
20/10/2020 15:41:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:00              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x3e73eb30 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:42:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e73eb30', '0x0')]
20/10/2020 15:42:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:01              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xf9794a37 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:42:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9794a37', '0x7')]
20/10/2020 15:42:01             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:42:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:42:02              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:42:02              dut.10.240.183.67: flow list 0
20/10/2020 15:42:02              dut.10.240.183.67: 
20/10/2020 15:42:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:03              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:03             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:42:03             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:42:03             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:42:03             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_gtpu passed
20/10/2020 15:42:03              dut.10.240.183.67: flow flush 0
20/10/2020 15:42:03              dut.10.240.183.67: 
20/10/2020 15:42:03             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv4_l3dst': 'passed', 'mac_ipv4_gtpu_ipv4_l3src': 'passed', 'mac_ipv4_gtpu_ipv4_all': 'passed', 'mac_ipv4_gtpu_ipv4_gtpu': 'passed'}
20/10/2020 15:42:03             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:42:03             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv4 Result PASSED:
20/10/2020 15:42:03              dut.10.240.183.67: flow flush 0
20/10/2020 15:42:04              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:42:04              dut.10.240.183.67: clear port stats all
20/10/2020 15:42:05              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:42:05              dut.10.240.183.67: stop
20/10/2020 15:42:05              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:42:05             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv4_symmetric Begin
20/10/2020 15:42:06              dut.10.240.183.67: 
20/10/2020 15:42:06                         tester: 
20/10/2020 15:42:06              dut.10.240.183.67: start
20/10/2020 15:42:06              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:42:06              dut.10.240.183.67: quit
20/10/2020 15:42:07              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:42:07              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:42:08              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:42:18              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:42:19              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:42:19              dut.10.240.183.67: set verbose 1
20/10/2020 15:42:19              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:42:19              dut.10.240.183.67: show port info all
20/10/2020 15:42:19              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:42:19              dut.10.240.183.67: start
20/10/2020 15:42:19              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:42:19             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_symmetric================
20/10/2020 15:42:19             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:42:19              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:42:19              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:42:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:42:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:42:19              dut.10.240.183.67: flow list 0
20/10/2020 15:42:19              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 => RSS
20/10/2020 15:42:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:20              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x4dbd84e2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:42:20             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 15:42:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x4dbd84e2', '0x2')]
20/10/2020 15:42:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:21              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x4dbd84e2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:42:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:42:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x4dbd84e2', '0x2')]
20/10/2020 15:42:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:22              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x4dbd84e2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:42:22             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 15:42:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x4dbd84e2', '0x2')]
20/10/2020 15:42:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:23              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - RSS hash=0x4dbd84e2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:42:23             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:42:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x4dbd84e2', '0x2')]
20/10/2020 15:42:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:24              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x4dbd84e2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:42:24             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 15:42:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x4dbd84e2', '0x2')]
20/10/2020 15:42:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:26              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x4dbd84e2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:42:26             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:42:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x4dbd84e2', '0x2')]
20/10/2020 15:42:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:27              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x4dbd84e2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:42:27             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 15:42:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x4dbd84e2', '0x2')]
20/10/2020 15:42:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:28              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x4dbd84e2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:42:28             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:42:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x4dbd84e2', '0x2')]
20/10/2020 15:42:28             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:42:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:42:29              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:42:29              dut.10.240.183.67: flow list 0
20/10/2020 15:42:29              dut.10.240.183.67: 
20/10/2020 15:42:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:30              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:30             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 15:42:30             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:42:30             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:42:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:31              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:31             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 15:42:31             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:42:31             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:42:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:32             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 15:42:32             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:42:32             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:42:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:33              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:33             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-udp'}

20/10/2020 15:42:33             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:42:33             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:42:33             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_symmetric passed
20/10/2020 15:42:33              dut.10.240.183.67: flow flush 0
20/10/2020 15:42:33              dut.10.240.183.67: 
20/10/2020 15:42:33             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv4_symmetric': 'passed'}
20/10/2020 15:42:33             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:42:33             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv4_symmetric Result PASSED:
20/10/2020 15:42:33              dut.10.240.183.67: flow flush 0
20/10/2020 15:42:35              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:42:35              dut.10.240.183.67: clear port stats all
20/10/2020 15:42:36              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:42:36              dut.10.240.183.67: stop
20/10/2020 15:42:36              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:42:36             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv4_tcp Begin
20/10/2020 15:42:36              dut.10.240.183.67: 
20/10/2020 15:42:36                         tester: 
20/10/2020 15:42:36              dut.10.240.183.67: start
20/10/2020 15:42:36              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:42:36             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_tcp_l3dst================
20/10/2020 15:42:36             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:42:36              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:42:36              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:42:36              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:42:36              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:42:36              dut.10.240.183.67: flow list 0
20/10/2020 15:42:36              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 TCP => RSS
20/10/2020 15:42:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:37              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x91918f3a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:37             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:42:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x91918f3a', '0xa')]
20/10/2020 15:42:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:38              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xd1524c13 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:42:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:42:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xd1524c13', '0x3')]
20/10/2020 15:42:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:40              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x91918f3a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:42:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x91918f3a', '0xa')]
20/10/2020 15:42:40             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:42:40              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:42:41              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:42:41              dut.10.240.183.67: flow list 0
20/10/2020 15:42:41              dut.10.240.183.67: 
20/10/2020 15:42:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:42              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:42             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:42:42             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:42:42             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:42:42             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_tcp_l3dst passed
20/10/2020 15:42:42              dut.10.240.183.67: flow flush 0
20/10/2020 15:42:42              dut.10.240.183.67: 
20/10/2020 15:42:42             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_tcp_l3src================
20/10/2020 15:42:42             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:42:42              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:42:42              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:42:42              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:42:42              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:42:42              dut.10.240.183.67: flow list 0
20/10/2020 15:42:42              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 TCP => RSS
20/10/2020 15:42:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:43              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x33b332e7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:43             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:42:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x33b332e7', '0x7')]
20/10/2020 15:42:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:44              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x33b332e7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:42:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x33b332e7', '0x7')]
20/10/2020 15:42:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:45              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x7370f1ce - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:42:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x7370f1ce', '0xe')]
20/10/2020 15:42:45             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:42:45              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:42:47              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:42:47              dut.10.240.183.67: flow list 0
20/10/2020 15:42:47              dut.10.240.183.67: 
20/10/2020 15:42:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:48              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:48             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:42:48             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:42:48             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:42:48             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_tcp_l3src passed
20/10/2020 15:42:48              dut.10.240.183.67: flow flush 0
20/10/2020 15:42:48              dut.10.240.183.67: 
20/10/2020 15:42:48             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_tcp_l3dst_l4src================
20/10/2020 15:42:48             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:42:48              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:42:48              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:42:48              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:42:48              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:42:48              dut.10.240.183.67: flow list 0
20/10/2020 15:42:48              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 TCP => RSS
20/10/2020 15:42:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:49              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xfde98012 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:42:49             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:42:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xfde98012', '0x2')]
20/10/2020 15:42:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:50              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xbd2a433b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:42:50             TestCVLIAVFRSSGTPU: hash_infos: [('0xbd2a433b', '0xb')]
20/10/2020 15:42:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:51              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa1b3059e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:42:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xa1b3059e', '0xe')]
20/10/2020 15:42:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:52              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xfde98012 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:42:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:42:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xfde98012', '0x2')]
20/10/2020 15:42:52             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:42:52              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:42:54              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:42:54              dut.10.240.183.67: flow list 0
20/10/2020 15:42:54              dut.10.240.183.67: 
20/10/2020 15:42:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:55              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:55             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:42:55             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:42:55             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:42:55             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_tcp_l3dst_l4src passed
20/10/2020 15:42:55              dut.10.240.183.67: flow flush 0
20/10/2020 15:42:55              dut.10.240.183.67: 
20/10/2020 15:42:55             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_tcp_l3dst_l4dst================
20/10/2020 15:42:55             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:42:55              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:42:55              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:42:55              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:42:55              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:42:55              dut.10.240.183.67: flow list 0
20/10/2020 15:42:55              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 TCP => RSS
20/10/2020 15:42:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:56              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xd4804492 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:42:56             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:42:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xd4804492', '0x2')]
20/10/2020 15:42:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:57              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x944387bb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:42:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x944387bb', '0xb')]
20/10/2020 15:42:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:58              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xa1b3059e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:42:58             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:42:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xa1b3059e', '0xe')]
20/10/2020 15:42:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:42:59              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xd4804492 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:42:59             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:42:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xd4804492', '0x2')]
20/10/2020 15:42:59             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:42:59              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:43:01              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:43:01              dut.10.240.183.67: flow list 0
20/10/2020 15:43:01              dut.10.240.183.67: 
20/10/2020 15:43:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:02              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:02             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 15:43:02             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_tcp_l3dst_l4dst passed
20/10/2020 15:43:02              dut.10.240.183.67: flow flush 0
20/10/2020 15:43:02              dut.10.240.183.67: 
20/10/2020 15:43:02             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_tcp_l3src_l4src================
20/10/2020 15:43:02             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:43:02              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:43:02              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:43:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:43:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:43:02              dut.10.240.183.67: flow list 0
20/10/2020 15:43:02              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 TCP => RSS
20/10/2020 15:43:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:03              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x5fcb3dcf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:03             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:43:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x5fcb3dcf', '0xf')]
20/10/2020 15:43:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:04              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1f08fee6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:43:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:43:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x1f08fee6', '0x6')]
20/10/2020 15:43:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:05              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x391b843 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:43:05             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:43:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x391b843', '0x3')]
20/10/2020 15:43:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:06              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x5fcb3dcf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:43:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x5fcb3dcf', '0xf')]
20/10/2020 15:43:06             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:43:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:43:08              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:43:08              dut.10.240.183.67: flow list 0
20/10/2020 15:43:08              dut.10.240.183.67: 
20/10/2020 15:43:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:09              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:09             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:43:09             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:43:09             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:43:09             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_tcp_l3src_l4src passed
20/10/2020 15:43:09              dut.10.240.183.67: flow flush 0
20/10/2020 15:43:09              dut.10.240.183.67: 
20/10/2020 15:43:09             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_tcp_l3src_l4dst================
20/10/2020 15:43:09             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:43:09              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:43:09              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:43:09              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:43:09              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:43:09              dut.10.240.183.67: flow list 0
20/10/2020 15:43:09              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 TCP => RSS
20/10/2020 15:43:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:10              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x76a2f94f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:10             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:43:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x76a2f94f', '0xf')]
20/10/2020 15:43:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:11              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x36613a66 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:43:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:43:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x36613a66', '0x6')]
20/10/2020 15:43:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:12              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x391b843 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:43:12             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:43:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x391b843', '0x3')]
20/10/2020 15:43:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:13              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x76a2f94f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:43:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x76a2f94f', '0xf')]
20/10/2020 15:43:13             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:43:13              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:43:15              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:43:15              dut.10.240.183.67: flow list 0
20/10/2020 15:43:15              dut.10.240.183.67: 
20/10/2020 15:43:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:16              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:16             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:43:16             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:43:16             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:43:16             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_tcp_l3src_l4dst passed
20/10/2020 15:43:16              dut.10.240.183.67: flow flush 0
20/10/2020 15:43:16              dut.10.240.183.67: 
20/10/2020 15:43:16             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_tcp_l4src================
20/10/2020 15:43:16             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:43:16              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:43:16              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:43:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:43:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:43:16              dut.10.240.183.67: flow list 0
20/10/2020 15:43:16              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 TCP => RSS
20/10/2020 15:43:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:17              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xed13a51d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:43:17             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:43:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xed13a51d', '0xd')]
20/10/2020 15:43:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:18              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xea25fe2e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:43:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xea25fe2e', '0xe')]
20/10/2020 15:43:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:19              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xed13a51d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:43:19             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:43:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xed13a51d', '0xd')]
20/10/2020 15:43:19             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:43:19              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:43:20              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:43:20              dut.10.240.183.67: flow list 0
20/10/2020 15:43:21              dut.10.240.183.67: 
20/10/2020 15:43:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:22              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:22             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:43:22             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:43:22             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:43:22             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_tcp_l4src passed
20/10/2020 15:43:22              dut.10.240.183.67: flow flush 0
20/10/2020 15:43:22              dut.10.240.183.67: 
20/10/2020 15:43:22             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_tcp_l4dst================
20/10/2020 15:43:22             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:43:22              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:43:22              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:43:22              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:43:22              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:43:22              dut.10.240.183.67: flow list 0
20/10/2020 15:43:22              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 TCP => RSS
20/10/2020 15:43:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:23              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x4d5366de - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:23             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:43:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x4d5366de', '0xe')]
20/10/2020 15:43:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:24              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x4a653ded - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:43:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:43:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x4a653ded', '0xd')]
20/10/2020 15:43:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:25              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x4d5366de - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:25             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:43:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x4d5366de', '0xe')]
20/10/2020 15:43:25             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:43:25              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:43:26              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:43:26              dut.10.240.183.67: flow list 0
20/10/2020 15:43:26              dut.10.240.183.67: 
20/10/2020 15:43:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:28              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:28             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:43:28             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:43:28             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:43:28             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_tcp_l4dst passed
20/10/2020 15:43:28              dut.10.240.183.67: flow flush 0
20/10/2020 15:43:28              dut.10.240.183.67: 
20/10/2020 15:43:28             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_tcp_all================
20/10/2020 15:43:28             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:43:28              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:43:28              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:43:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:43:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:43:28              dut.10.240.183.67: flow list 0
20/10/2020 15:43:28              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 TCP => RSS
20/10/2020 15:43:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:29              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb5c0d871 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:29             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:43:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xb5c0d871', '0x1')]
20/10/2020 15:43:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:30              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x8da5b9c0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:43:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x8da5b9c0', '0x0')]
20/10/2020 15:43:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:31              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xd471a97d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:43:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:43:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xd471a97d', '0xd')]
20/10/2020 15:43:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:32              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xdc045824 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:43:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:43:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc045824', '0x4')]
20/10/2020 15:43:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:33              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xf5031b58 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:43:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xf5031b58', '0x8')]
20/10/2020 15:43:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:34              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb5c0d871 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:43:34             TestCVLIAVFRSSGTPU: hash_infos: [('0xb5c0d871', '0x1')]
20/10/2020 15:43:34             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:43:34              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:43:36              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:43:36              dut.10.240.183.67: flow list 0
20/10/2020 15:43:36              dut.10.240.183.67: 
20/10/2020 15:43:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:37             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:43:37             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:43:37             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:43:37             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_tcp_all passed
20/10/2020 15:43:37              dut.10.240.183.67: flow flush 0
20/10/2020 15:43:37              dut.10.240.183.67: 
20/10/2020 15:43:37             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv4_tcp_l3dst': 'passed', 'mac_ipv4_gtpu_ipv4_tcp_l3src': 'passed', 'mac_ipv4_gtpu_ipv4_tcp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_ipv4_tcp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_ipv4_tcp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_ipv4_tcp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_ipv4_tcp_l4src': 'passed', 'mac_ipv4_gtpu_ipv4_tcp_l4dst': 'passed', 'mac_ipv4_gtpu_ipv4_tcp_all': 'passed'}
20/10/2020 15:43:37             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:43:37             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv4_tcp Result PASSED:
20/10/2020 15:43:37              dut.10.240.183.67: flow flush 0
20/10/2020 15:43:38              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:43:38              dut.10.240.183.67: clear port stats all
20/10/2020 15:43:39              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:43:39              dut.10.240.183.67: stop
20/10/2020 15:43:39              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:43:39             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv4_tcp_symmetric Begin
20/10/2020 15:43:39              dut.10.240.183.67: 
20/10/2020 15:43:39                         tester: 
20/10/2020 15:43:39              dut.10.240.183.67: start
20/10/2020 15:43:40              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:43:40              dut.10.240.183.67: quit
20/10/2020 15:43:41              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:43:41              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:43:42              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:43:52              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:43:52              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:43:52              dut.10.240.183.67: set verbose 1
20/10/2020 15:43:53              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:43:53              dut.10.240.183.67: show port info all
20/10/2020 15:43:53              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:43:53              dut.10.240.183.67: start
20/10/2020 15:43:53              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:43:53             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_tcp_symmetric================
20/10/2020 15:43:53             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:43:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end  actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:43:53              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:43:53              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end  actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:43:53              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:43:53              dut.10.240.183.67: flow list 0
20/10/2020 15:43:53              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 TCP => RSS
20/10/2020 15:43:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:54              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x9a1b79ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:54             TestCVLIAVFRSSGTPU: action: {'save_hash': 'basic_with_rule'}

20/10/2020 15:43:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x9a1b79ab', '0xb')]
20/10/2020 15:43:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:55              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x9a1b79ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:43:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x9a1b79ab', '0xb')]
20/10/2020 15:43:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:56              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x9a1b79ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:56             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:43:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x9a1b79ab', '0xb')]
20/10/2020 15:43:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:43:57              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x9a1b79ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:43:57             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:43:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x9a1b79ab', '0xb')]
20/10/2020 15:43:57             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:43:57              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:43:58              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:43:58              dut.10.240.183.67: flow list 0
20/10/2020 15:43:59              dut.10.240.183.67: 
20/10/2020 15:43:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:00              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:00             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:44:00             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:44:00             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:44:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:01              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:01             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:44:01             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:44:01             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:44:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:02              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:02             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:44:02             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:44:02             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:44:02             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_tcp_symmetric passed
20/10/2020 15:44:02              dut.10.240.183.67: flow flush 0
20/10/2020 15:44:02              dut.10.240.183.67: 
20/10/2020 15:44:02             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv4_tcp_symmetric': 'passed'}
20/10/2020 15:44:02             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:44:02             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv4_tcp_symmetric Result PASSED:
20/10/2020 15:44:02              dut.10.240.183.67: flow flush 0
20/10/2020 15:44:03              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:44:03              dut.10.240.183.67: clear port stats all
20/10/2020 15:44:04              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:44:04              dut.10.240.183.67: stop
20/10/2020 15:44:04              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:44:04             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv4_udp Begin
20/10/2020 15:44:04              dut.10.240.183.67: 
20/10/2020 15:44:04                         tester: 
20/10/2020 15:44:04              dut.10.240.183.67: start
20/10/2020 15:44:05              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:44:05             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_l3dst================
20/10/2020 15:44:05             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:44:05              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:44:05              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:44:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:44:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:44:05              dut.10.240.183.67: flow list 0
20/10/2020 15:44:05              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 UDP => RSS
20/10/2020 15:44:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:06              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x56d2f687 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:44:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x56d2f687', '0x7')]
20/10/2020 15:44:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:07              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xe747201d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:44:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:44:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xe747201d', '0xd')]
20/10/2020 15:44:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:08              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x56d2f687 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:08             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:44:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x56d2f687', '0x7')]
20/10/2020 15:44:08             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:44:08              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:44:09              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:44:09              dut.10.240.183.67: flow list 0
20/10/2020 15:44:09              dut.10.240.183.67: 
20/10/2020 15:44:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:10              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:10             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:44:10             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:44:10             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:44:10             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_udp_l3dst passed
20/10/2020 15:44:10              dut.10.240.183.67: flow flush 0
20/10/2020 15:44:10              dut.10.240.183.67: 
20/10/2020 15:44:10             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_l3src================
20/10/2020 15:44:10             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:44:10              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:44:11              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:44:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:44:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:44:11              dut.10.240.183.67: flow list 0
20/10/2020 15:44:11              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 UDP => RSS
20/10/2020 15:44:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:12              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x9ef2173 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:44:12             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:44:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x9ef2173', '0x3')]
20/10/2020 15:44:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:13              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x9ef2173 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:44:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:44:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x9ef2173', '0x3')]
20/10/2020 15:44:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:14              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xb87af7e9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:44:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xb87af7e9', '0x9')]
20/10/2020 15:44:14             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:44:14              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:44:15              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:44:15              dut.10.240.183.67: flow list 0
20/10/2020 15:44:15              dut.10.240.183.67: 
20/10/2020 15:44:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:16              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:16             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:44:16             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:44:16             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:44:16             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_udp_l3src passed
20/10/2020 15:44:16              dut.10.240.183.67: flow flush 0
20/10/2020 15:44:16              dut.10.240.183.67: 
20/10/2020 15:44:16             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_l3dst_l4src================
20/10/2020 15:44:16             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:44:16              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:44:16              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:44:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:44:17              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:44:17              dut.10.240.183.67: flow list 0
20/10/2020 15:44:17              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 UDP => RSS
20/10/2020 15:44:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:18              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xd48291a5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:44:18             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:44:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xd48291a5', '0x5')]
20/10/2020 15:44:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:19              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x6517473f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:19             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:44:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x6517473f', '0xf')]
20/10/2020 15:44:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:20              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x78a011ea - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:44:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x78a011ea', '0xa')]
20/10/2020 15:44:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:21              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xd48291a5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:44:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:44:21             TestCVLIAVFRSSGTPU: hash_infos: [('0xd48291a5', '0x5')]
20/10/2020 15:44:21             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:44:21              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:44:22              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:44:22              dut.10.240.183.67: flow list 0
20/10/2020 15:44:22              dut.10.240.183.67: 
20/10/2020 15:44:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:23              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:23             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:44:23             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:44:23             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:44:23             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_udp_l3dst_l4src passed
20/10/2020 15:44:23              dut.10.240.183.67: flow flush 0
20/10/2020 15:44:23              dut.10.240.183.67: 
20/10/2020 15:44:23             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_l3dst_l4dst================
20/10/2020 15:44:23             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:44:23              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:44:23              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:44:23              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:44:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:44:24              dut.10.240.183.67: flow list 0
20/10/2020 15:44:24              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 UDP => RSS
20/10/2020 15:44:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:25              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x4e254805 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:44:25             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:44:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x4e254805', '0x5')]
20/10/2020 15:44:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:26              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xffb09e9f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:44:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xffb09e9f', '0xf')]
20/10/2020 15:44:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:27              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x78a011ea - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:44:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x78a011ea', '0xa')]
20/10/2020 15:44:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:28              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x4e254805 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:44:28             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:44:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x4e254805', '0x5')]
20/10/2020 15:44:28             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:44:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:44:29              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:44:29              dut.10.240.183.67: flow list 0
20/10/2020 15:44:29              dut.10.240.183.67: 
20/10/2020 15:44:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:30              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:30             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 15:44:30             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_udp_l3dst_l4dst passed
20/10/2020 15:44:30              dut.10.240.183.67: flow flush 0
20/10/2020 15:44:30              dut.10.240.183.67: 
20/10/2020 15:44:30             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_l3src_l4src================
20/10/2020 15:44:30             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:44:30              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:44:30              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:44:30              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:44:31              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:44:31              dut.10.240.183.67: flow list 0
20/10/2020 15:44:31              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 UDP => RSS
20/10/2020 15:44:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:32              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x8bbf4651 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:32             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:44:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x8bbf4651', '0x1')]
20/10/2020 15:44:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:33              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x3a2a90cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:44:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x3a2a90cb', '0xb')]
20/10/2020 15:44:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:34              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x279dc61e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:44:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x279dc61e', '0xe')]
20/10/2020 15:44:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:35              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x8bbf4651 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:35             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:44:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x8bbf4651', '0x1')]
20/10/2020 15:44:35             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:44:35              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:44:36              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:44:36              dut.10.240.183.67: flow list 0
20/10/2020 15:44:36              dut.10.240.183.67: 
20/10/2020 15:44:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:37             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:44:37             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:44:37             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:44:37             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_udp_l3src_l4src passed
20/10/2020 15:44:37              dut.10.240.183.67: flow flush 0
20/10/2020 15:44:37              dut.10.240.183.67: 
20/10/2020 15:44:37             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_l3src_l4dst================
20/10/2020 15:44:37             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:44:37              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:44:37              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:44:37              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:44:38              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:44:38              dut.10.240.183.67: flow list 0
20/10/2020 15:44:38              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 UDP => RSS
20/10/2020 15:44:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:39              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x11189ff1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:39             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:44:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x11189ff1', '0x1')]
20/10/2020 15:44:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:40              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xa08d496b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:40             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:44:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xa08d496b', '0xb')]
20/10/2020 15:44:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:41              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x279dc61e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:41             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:44:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x279dc61e', '0xe')]
20/10/2020 15:44:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:42              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x11189ff1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:42             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:44:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x11189ff1', '0x1')]
20/10/2020 15:44:42             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:44:42              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:44:43              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:44:43              dut.10.240.183.67: flow list 0
20/10/2020 15:44:43              dut.10.240.183.67: 
20/10/2020 15:44:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:44              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:44             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:44:44             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:44:44             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:44:44             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_udp_l3src_l4dst passed
20/10/2020 15:44:44              dut.10.240.183.67: flow flush 0
20/10/2020 15:44:44              dut.10.240.183.67: 
20/10/2020 15:44:44             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_l4src================
20/10/2020 15:44:44             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:44:44              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:44:45              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:44:45              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:44:45              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:44:45              dut.10.240.183.67: flow list 0
20/10/2020 15:44:45              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 UDP => RSS
20/10/2020 15:44:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:46              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x5ed7c479 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:46             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:44:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x5ed7c479', '0x9')]
20/10/2020 15:44:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:47              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x7dadfe14 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:44:47             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:44:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x7dadfe14', '0x4')]
20/10/2020 15:44:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:48              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x5ed7c479 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:48             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:44:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x5ed7c479', '0x9')]
20/10/2020 15:44:48             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:44:48              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:44:49              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:44:49              dut.10.240.183.67: flow list 0
20/10/2020 15:44:49              dut.10.240.183.67: 
20/10/2020 15:44:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:50              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:50             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:44:50             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:44:50             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:44:50             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_udp_l4src passed
20/10/2020 15:44:50              dut.10.240.183.67: flow flush 0
20/10/2020 15:44:50              dut.10.240.183.67: 
20/10/2020 15:44:50             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_l4dst================
20/10/2020 15:44:50             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:44:50              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:44:50              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:44:50              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:44:50              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:44:50              dut.10.240.183.67: flow list 0
20/10/2020 15:44:51              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 UDP => RSS
20/10/2020 15:44:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:52              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x7e6651af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:52             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:44:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e6651af', '0xf')]
20/10/2020 15:44:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:53              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x5d1c6bc2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:44:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:44:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x5d1c6bc2', '0x2')]
20/10/2020 15:44:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:54              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x7e6651af - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:44:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e6651af', '0xf')]
20/10/2020 15:44:54             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:44:54              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:44:55              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:44:55              dut.10.240.183.67: flow list 0
20/10/2020 15:44:55              dut.10.240.183.67: 
20/10/2020 15:44:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:56              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:44:56             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:44:56             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:44:56             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:44:56             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_udp_l4dst passed
20/10/2020 15:44:56              dut.10.240.183.67: flow flush 0
20/10/2020 15:44:56              dut.10.240.183.67: 
20/10/2020 15:44:56             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_all================
20/10/2020 15:44:56             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:44:56              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:44:56              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:44:56              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:44:56              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:44:56              dut.10.240.183.67: flow list 0
20/10/2020 15:44:56              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 UDP => RSS
20/10/2020 15:44:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:58              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xa345bcdd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:44:58             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:44:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xa345bcdd', '0xd')]
20/10/2020 15:44:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:44:59              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xbcdbbca3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:44:59             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:44:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xbcdbbca3', '0x3')]
20/10/2020 15:44:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:00              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xa33b96be - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:45:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:45:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xa33b96be', '0xe')]
20/10/2020 15:45:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:01              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x49c1cf2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:01             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:45:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x49c1cf2', '0x2')]
20/10/2020 15:45:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:02              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0x12d06a47 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:45:02             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:45:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x12d06a47', '0x7')]
20/10/2020 15:45:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:03              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xa345bcdd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:45:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:45:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xa345bcdd', '0xd')]
20/10/2020 15:45:03             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:45:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:45:04              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:45:04              dut.10.240.183.67: flow list 0
20/10/2020 15:45:04              dut.10.240.183.67: 
20/10/2020 15:45:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:05              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:45:05             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:45:05             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:45:05             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:45:05             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_udp_all passed
20/10/2020 15:45:05              dut.10.240.183.67: flow flush 0
20/10/2020 15:45:05              dut.10.240.183.67: 
20/10/2020 15:45:05             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv4_udp_l3dst': 'passed', 'mac_ipv4_gtpu_ipv4_udp_l3src': 'passed', 'mac_ipv4_gtpu_ipv4_udp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_ipv4_udp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_ipv4_udp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_ipv4_udp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_ipv4_udp_l4src': 'passed', 'mac_ipv4_gtpu_ipv4_udp_l4dst': 'passed', 'mac_ipv4_gtpu_ipv4_udp_all': 'passed'}
20/10/2020 15:45:05             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:45:05             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv4_udp Result PASSED:
20/10/2020 15:45:05              dut.10.240.183.67: flow flush 0
20/10/2020 15:45:07              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:45:07              dut.10.240.183.67: clear port stats all
20/10/2020 15:45:08              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:45:08              dut.10.240.183.67: stop
20/10/2020 15:45:08              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:45:08             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv4_udp_symmetric Begin
20/10/2020 15:45:08              dut.10.240.183.67: 
20/10/2020 15:45:08                         tester: 
20/10/2020 15:45:08              dut.10.240.183.67: start
20/10/2020 15:45:08              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:45:08              dut.10.240.183.67: quit
20/10/2020 15:45:10              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:45:10              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:45:11              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:45:21              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:45:21              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:45:21              dut.10.240.183.67: set verbose 1
20/10/2020 15:45:21              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:45:21              dut.10.240.183.67: show port info all
20/10/2020 15:45:21              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:45:21              dut.10.240.183.67: start
20/10/2020 15:45:21              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:45:21             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_symmetric================
20/10/2020 15:45:21             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:45:21              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:45:22              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:45:22              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:45:22              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:45:22              dut.10.240.183.67: flow list 0
20/10/2020 15:45:22              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV4 UDP => RSS
20/10/2020 15:45:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:23              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xd6cde18d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:23             TestCVLIAVFRSSGTPU: action: {'save_hash': 'basic_with_rule'}

20/10/2020 15:45:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xd6cde18d', '0xd')]
20/10/2020 15:45:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:24              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xd6cde18d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:45:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xd6cde18d', '0xd')]
20/10/2020 15:45:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:25              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xd6cde18d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:25             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:45:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xd6cde18d', '0xd')]
20/10/2020 15:45:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:26              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - RSS hash=0xd6cde18d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:26             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:45:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xd6cde18d', '0xd')]
20/10/2020 15:45:26             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:45:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:45:27              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:45:27              dut.10.240.183.67: flow list 0
20/10/2020 15:45:27              dut.10.240.183.67: 
20/10/2020 15:45:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:28              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:45:28             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:45:28             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:45:28             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:45:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:29              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:45:29             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:45:29             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:45:29             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:45:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:31              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:45:31             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:45:31             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:45:31             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:45:31             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_udp_symmetric passed
20/10/2020 15:45:31              dut.10.240.183.67: flow flush 0
20/10/2020 15:45:31              dut.10.240.183.67: 
20/10/2020 15:45:31             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv4_udp_symmetric': 'passed'}
20/10/2020 15:45:31             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:45:31             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv4_udp_symmetric Result PASSED:
20/10/2020 15:45:31              dut.10.240.183.67: flow flush 0
20/10/2020 15:45:32              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:45:32              dut.10.240.183.67: clear port stats all
20/10/2020 15:45:33              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:45:33              dut.10.240.183.67: stop
20/10/2020 15:45:33              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:45:33             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv6 Begin
20/10/2020 15:45:33              dut.10.240.183.67: 
20/10/2020 15:45:33                         tester: 
20/10/2020 15:45:33              dut.10.240.183.67: start
20/10/2020 15:45:33              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:45:33             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_l3dst================
20/10/2020 15:45:33             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:45:33              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:45:33              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:45:33              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:45:33              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:45:34              dut.10.240.183.67: flow list 0
20/10/2020 15:45:34              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 => RSS
20/10/2020 15:45:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:35              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x122163cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:45:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x122163cd', '0xd')]
20/10/2020 15:45:35             TestCVLIAVFRSSGTPU: action: ipv6-nonfrag

20/10/2020 15:45:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:36              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x3c9de6d0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:45:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:45:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x3c9de6d0', '0x0')]
20/10/2020 15:45:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:37              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x122163cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:45:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x122163cd', '0xd')]
20/10/2020 15:45:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:38              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x122163cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:38             TestCVLIAVFRSSGTPU: action: ipv6-frag

20/10/2020 15:45:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:45:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x122163cd', '0xd')]
20/10/2020 15:45:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:39              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x3c9de6d0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:45:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:45:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x3c9de6d0', '0x0')]
20/10/2020 15:45:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:40              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x122163cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:45:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x122163cd', '0xd')]
20/10/2020 15:45:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:41              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x122163cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:41             TestCVLIAVFRSSGTPU: action: ipv6-icmp

20/10/2020 15:45:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:45:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x122163cd', '0xd')]
20/10/2020 15:45:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:42              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x3c9de6d0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:45:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:45:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x3c9de6d0', '0x0')]
20/10/2020 15:45:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:44              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x122163cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:45:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x122163cd', '0xd')]
20/10/2020 15:45:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:45              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x122163cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:45             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:45:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x122163cd', '0xd')]
20/10/2020 15:45:45             TestCVLIAVFRSSGTPU: action: ipv6-tcp

20/10/2020 15:45:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:46              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x3c9de6d0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:45:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:45:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x3c9de6d0', '0x0')]
20/10/2020 15:45:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:47              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x122163cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:45:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x122163cd', '0xd')]
20/10/2020 15:45:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:48              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x122163cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:48             TestCVLIAVFRSSGTPU: action: ipv6-udp

20/10/2020 15:45:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:45:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x122163cd', '0xd')]
20/10/2020 15:45:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:49              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x3c9de6d0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:45:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:45:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x3c9de6d0', '0x0')]
20/10/2020 15:45:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:50              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x122163cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:45:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x122163cd', '0xd')]
20/10/2020 15:45:50             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:45:50              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:45:51              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:45:51              dut.10.240.183.67: flow list 0
20/10/2020 15:45:51              dut.10.240.183.67: 
20/10/2020 15:45:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:52              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:45:52             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:45:52             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:45:52             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:45:52             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_l3dst passed
20/10/2020 15:45:52              dut.10.240.183.67: flow flush 0
20/10/2020 15:45:53              dut.10.240.183.67: 
20/10/2020 15:45:53             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_l3src_only================
20/10/2020 15:45:53             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:45:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 15:45:53              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:45:53              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 15:45:53              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:45:53              dut.10.240.183.67: flow list 0
20/10/2020 15:45:53              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 => RSS
20/10/2020 15:45:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:54              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x9458dba4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:45:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x9458dba4', '0x4')]
20/10/2020 15:45:54             TestCVLIAVFRSSGTPU: action: ipv6-nonfrag

20/10/2020 15:45:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:55              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xf19add - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:45:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xf19add', '0xd')]
20/10/2020 15:45:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:56              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x9458dba4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:56             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:45:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x9458dba4', '0x4')]
20/10/2020 15:45:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:57              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x9458dba4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:57             TestCVLIAVFRSSGTPU: action: ipv6-frag

20/10/2020 15:45:57             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:45:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x9458dba4', '0x4')]
20/10/2020 15:45:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:58              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xf19add - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:58             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:45:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xf19add', '0xd')]
20/10/2020 15:45:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:45:59              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x9458dba4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:45:59             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:45:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x9458dba4', '0x4')]
20/10/2020 15:45:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:00              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x9458dba4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:00             TestCVLIAVFRSSGTPU: action: ipv6-icmp

20/10/2020 15:46:00             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:46:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x9458dba4', '0x4')]
20/10/2020 15:46:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:02              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xf19add - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:02             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xf19add', '0xd')]
20/10/2020 15:46:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:03              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x9458dba4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:46:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x9458dba4', '0x4')]
20/10/2020 15:46:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:04              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x9458dba4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:04             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:46:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x9458dba4', '0x4')]
20/10/2020 15:46:04             TestCVLIAVFRSSGTPU: action: ipv6-tcp

20/10/2020 15:46:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:05              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xf19add - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:05             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xf19add', '0xd')]
20/10/2020 15:46:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:06              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x9458dba4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:46:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x9458dba4', '0x4')]
20/10/2020 15:46:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:07              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x9458dba4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:07             TestCVLIAVFRSSGTPU: action: ipv6-udp

20/10/2020 15:46:07             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:46:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x9458dba4', '0x4')]
20/10/2020 15:46:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:08              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xf19add - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xf19add', '0xd')]
20/10/2020 15:46:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:09              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x9458dba4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:46:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x9458dba4', '0x4')]
20/10/2020 15:46:09             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:46:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:46:10              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:46:10              dut.10.240.183.67: flow list 0
20/10/2020 15:46:10              dut.10.240.183.67: 
20/10/2020 15:46:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:12              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:12             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:46:12             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:46:12             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:46:12             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_l3src_only passed
20/10/2020 15:46:12              dut.10.240.183.67: flow flush 0
20/10/2020 15:46:12              dut.10.240.183.67: 
20/10/2020 15:46:12             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_all================
20/10/2020 15:46:12             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:46:12              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 15:46:12              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:46:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 15:46:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:46:12              dut.10.240.183.67: flow list 0
20/10/2020 15:46:12              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 => RSS
20/10/2020 15:46:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:13              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x2118c470 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:13             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:46:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x2118c470', '0x0')]
20/10/2020 15:46:13             TestCVLIAVFRSSGTPU: action: ipv6-nonfrag

20/10/2020 15:46:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:14              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xf8c8c7ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xf8c8c7ab', '0xb')]
20/10/2020 15:46:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:15              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb5b18509 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xb5b18509', '0x9')]
20/10/2020 15:46:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:16              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x6c6186d2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x6c6186d2', '0x2')]
20/10/2020 15:46:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:17              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x2118c470 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:17             TestCVLIAVFRSSGTPU: action: ipv6-frag

20/10/2020 15:46:17             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:46:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x2118c470', '0x0')]
20/10/2020 15:46:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:18              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xf8c8c7ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xf8c8c7ab', '0xb')]
20/10/2020 15:46:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:20              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xb5b18509 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xb5b18509', '0x9')]
20/10/2020 15:46:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:21              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x6c6186d2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:21             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x6c6186d2', '0x2')]
20/10/2020 15:46:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:22              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x2118c470 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:22             TestCVLIAVFRSSGTPU: action: ipv6-icmp

20/10/2020 15:46:22             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:46:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x2118c470', '0x0')]
20/10/2020 15:46:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:23              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xf8c8c7ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xf8c8c7ab', '0xb')]
20/10/2020 15:46:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:24              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xb5b18509 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xb5b18509', '0x9')]
20/10/2020 15:46:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:25              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x6c6186d2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x6c6186d2', '0x2')]
20/10/2020 15:46:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:26              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2118c470 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:26             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:46:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x2118c470', '0x0')]
20/10/2020 15:46:26             TestCVLIAVFRSSGTPU: action: ipv6-tcp

20/10/2020 15:46:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:27              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xf8c8c7ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xf8c8c7ab', '0xb')]
20/10/2020 15:46:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:28              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb5b18509 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xb5b18509', '0x9')]
20/10/2020 15:46:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:29              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x6c6186d2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x6c6186d2', '0x2')]
20/10/2020 15:46:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:31              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x2118c470 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:31             TestCVLIAVFRSSGTPU: action: ipv6-udp

20/10/2020 15:46:31             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:46:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x2118c470', '0x0')]
20/10/2020 15:46:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:32              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xf8c8c7ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xf8c8c7ab', '0xb')]
20/10/2020 15:46:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:33              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xb5b18509 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xb5b18509', '0x9')]
20/10/2020 15:46:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:34              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x6c6186d2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:46:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x6c6186d2', '0x2')]
20/10/2020 15:46:34             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:46:34              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:46:35              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:46:35              dut.10.240.183.67: flow list 0
20/10/2020 15:46:35              dut.10.240.183.67: 
20/10/2020 15:46:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:36              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:36             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:46:36             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:46:36             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:46:36             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_all passed
20/10/2020 15:46:36              dut.10.240.183.67: flow flush 0
20/10/2020 15:46:36              dut.10.240.183.67: 
20/10/2020 15:46:36             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_gtpu================
20/10/2020 15:46:36             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:46:36              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types gtpu end key_len 0 queues end / end
20/10/2020 15:46:36              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:46:36              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss types gtpu end key_len 0 queues end / end
20/10/2020 15:46:36              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:46:36              dut.10.240.183.67: flow list 0
20/10/2020 15:46:37              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 => RSS
20/10/2020 15:46:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:38              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb6a7b088 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:46:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xb6a7b088', '0x8')]
20/10/2020 15:46:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:39              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0x1361892f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x1361892f', '0xf')]
20/10/2020 15:46:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:40              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb6a7b088 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:46:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xb6a7b088', '0x8')]
20/10/2020 15:46:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:41              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xb6a7b088 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:46:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xb6a7b088', '0x8')]
20/10/2020 15:46:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:42              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x1361892f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x1361892f', '0xf')]
20/10/2020 15:46:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:43              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xb6a7b088 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:43             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:46:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xb6a7b088', '0x8')]
20/10/2020 15:46:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:44              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xb6a7b088 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:44             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:46:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xb6a7b088', '0x8')]
20/10/2020 15:46:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:45              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x1361892f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x1361892f', '0xf')]
20/10/2020 15:46:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:46              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xb6a7b088 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:46             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:46:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xb6a7b088', '0x8')]
20/10/2020 15:46:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:48              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xb6a7b088 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:46:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xb6a7b088', '0x8')]
20/10/2020 15:46:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:49              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x1361892f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:46:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x1361892f', '0xf')]
20/10/2020 15:46:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:50              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xb6a7b088 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:46:50             TestCVLIAVFRSSGTPU: hash_infos: [('0xb6a7b088', '0x8')]
20/10/2020 15:46:50             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:46:50              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:46:51              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:46:51              dut.10.240.183.67: flow list 0
20/10/2020 15:46:51              dut.10.240.183.67: 
20/10/2020 15:46:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:46:52              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:46:52             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:46:52             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:46:52             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:46:52             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_gtpu passed
20/10/2020 15:46:52              dut.10.240.183.67: flow flush 0
20/10/2020 15:46:52              dut.10.240.183.67: 
20/10/2020 15:46:52             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv6_l3dst': 'passed', 'mac_ipv4_gtpu_ipv6_l3src_only': 'passed', 'mac_ipv4_gtpu_ipv6_all': 'passed', 'mac_ipv4_gtpu_ipv6_gtpu': 'passed'}
20/10/2020 15:46:52             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:46:52             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv6 Result PASSED:
20/10/2020 15:46:52              dut.10.240.183.67: flow flush 0
20/10/2020 15:46:53              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:46:53              dut.10.240.183.67: clear port stats all
20/10/2020 15:46:54              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:46:54              dut.10.240.183.67: stop
20/10/2020 15:46:55              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:46:55             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv6_symmetric Begin
20/10/2020 15:46:55              dut.10.240.183.67: 
20/10/2020 15:46:55                         tester: 
20/10/2020 15:46:55              dut.10.240.183.67: start
20/10/2020 15:46:55              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:46:55              dut.10.240.183.67: quit
20/10/2020 15:46:56              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:46:56              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:46:58              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:47:08              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:47:08              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:47:08              dut.10.240.183.67: set verbose 1
20/10/2020 15:47:08              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:47:08              dut.10.240.183.67: show port info all
20/10/2020 15:47:08              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:47:08              dut.10.240.183.67: start
20/10/2020 15:47:08              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:47:08             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_symmetric================
20/10/2020 15:47:08             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:47:08              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 15:47:08              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:47:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 15:47:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:47:08              dut.10.240.183.67: flow list 0
20/10/2020 15:47:08              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 => RSS
20/10/2020 15:47:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:09              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xe45f12b0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:09             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 15:47:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xe45f12b0', '0x0')]
20/10/2020 15:47:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:10              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xe45f12b0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:10             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:47:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xe45f12b0', '0x0')]
20/10/2020 15:47:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:11              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xe45f12b0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:11             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 15:47:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xe45f12b0', '0x0')]
20/10/2020 15:47:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:13              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xe45f12b0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:47:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xe45f12b0', '0x0')]
20/10/2020 15:47:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:14              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xe45f12b0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:14             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 15:47:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xe45f12b0', '0x0')]
20/10/2020 15:47:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:15              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xe45f12b0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:15             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:47:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xe45f12b0', '0x0')]
20/10/2020 15:47:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:16              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xe45f12b0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:16             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 15:47:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xe45f12b0', '0x0')]
20/10/2020 15:47:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:17              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xe45f12b0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:17             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:47:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xe45f12b0', '0x0')]
20/10/2020 15:47:17             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:47:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:47:18              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:47:18              dut.10.240.183.67: flow list 0
20/10/2020 15:47:18              dut.10.240.183.67: 
20/10/2020 15:47:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:19              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:19             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 15:47:19             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:47:19             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:47:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:20              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=550 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:20             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 15:47:20             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:47:20             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:47:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:21              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:21             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 15:47:22             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:47:22             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:47:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:23              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=558 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:23             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-udp'}

20/10/2020 15:47:23             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:47:23             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:47:23             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_symmetric passed
20/10/2020 15:47:23              dut.10.240.183.67: flow flush 0
20/10/2020 15:47:23              dut.10.240.183.67: 
20/10/2020 15:47:23             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv4_symmetric': 'passed'}
20/10/2020 15:47:23             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:47:23             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv6_symmetric Result PASSED:
20/10/2020 15:47:23              dut.10.240.183.67: flow flush 0
20/10/2020 15:47:24              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:47:24              dut.10.240.183.67: clear port stats all
20/10/2020 15:47:25              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:47:25              dut.10.240.183.67: stop
20/10/2020 15:47:25              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

Done.
20/10/2020 15:47:25             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv6_tcp Begin
20/10/2020 15:47:25              dut.10.240.183.67: 
20/10/2020 15:47:25                         tester: 
20/10/2020 15:47:25              dut.10.240.183.67: start
20/10/2020 15:47:25              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:47:25             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_tcp_l3dst================
20/10/2020 15:47:25             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:47:25              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:47:25              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:47:25              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:47:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:47:26              dut.10.240.183.67: flow list 0
20/10/2020 15:47:26              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 TCP => RSS
20/10/2020 15:47:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:27              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x6a6cc14b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:27             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:47:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x6a6cc14b', '0xb')]
20/10/2020 15:47:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:28              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x291ebab7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:47:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x291ebab7', '0x7')]
20/10/2020 15:47:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:29              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x6a6cc14b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:29             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:47:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x6a6cc14b', '0xb')]
20/10/2020 15:47:29             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:47:29              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:47:30              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:47:30              dut.10.240.183.67: flow list 0
20/10/2020 15:47:30              dut.10.240.183.67: 
20/10/2020 15:47:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:31              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:31             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:47:31             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:47:31             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:47:31             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_tcp_l3dst passed
20/10/2020 15:47:31              dut.10.240.183.67: flow flush 0
20/10/2020 15:47:31              dut.10.240.183.67: 
20/10/2020 15:47:31             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_tcp_l3src================
20/10/2020 15:47:31             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:47:31              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:47:31              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:47:31              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:47:31              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:47:31              dut.10.240.183.67: flow list 0
20/10/2020 15:47:31              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 TCP => RSS
20/10/2020 15:47:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:33              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xaadb3080 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:33             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:47:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xaadb3080', '0x0')]
20/10/2020 15:47:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:34              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xaadb3080 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:47:34             TestCVLIAVFRSSGTPU: hash_infos: [('0xaadb3080', '0x0')]
20/10/2020 15:47:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:35              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xe3356dcc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:35             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:47:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xe3356dcc', '0xc')]
20/10/2020 15:47:35             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:47:35              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:47:36              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:47:36              dut.10.240.183.67: flow list 0
20/10/2020 15:47:36              dut.10.240.183.67: 
20/10/2020 15:47:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:37             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:47:37             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:47:37             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:47:37             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_tcp_l3src passed
20/10/2020 15:47:37              dut.10.240.183.67: flow flush 0
20/10/2020 15:47:37              dut.10.240.183.67: 
20/10/2020 15:47:37             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_tcp_l3dst_l4src================
20/10/2020 15:47:37             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:47:37              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:47:37              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:47:37              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:47:37              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:47:37              dut.10.240.183.67: flow list 0
20/10/2020 15:47:37              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 TCP => RSS
20/10/2020 15:47:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:38              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xef9bc43a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:47:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xef9bc43a', '0xa')]
20/10/2020 15:47:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:40              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xace9bfc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:47:40             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:47:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xace9bfc6', '0x6')]
20/10/2020 15:47:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:41              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x1c3eebf7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:41             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:47:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x1c3eebf7', '0x7')]
20/10/2020 15:47:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:42              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xef9bc43a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:42             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:47:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xef9bc43a', '0xa')]
20/10/2020 15:47:42             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:47:42              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:47:43              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:47:43              dut.10.240.183.67: flow list 0
20/10/2020 15:47:43              dut.10.240.183.67: 
20/10/2020 15:47:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:44              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:44             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:47:44             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:47:44             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:47:44             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_tcp_l3dst_l4src passed
20/10/2020 15:47:44              dut.10.240.183.67: flow flush 0
20/10/2020 15:47:44              dut.10.240.183.67: 
20/10/2020 15:47:44             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_tcp_l3dst_l4dst================
20/10/2020 15:47:44             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:47:44              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:47:44              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:47:44              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:47:44              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:47:44              dut.10.240.183.67: flow list 0
20/10/2020 15:47:44              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 TCP => RSS
20/10/2020 15:47:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:45              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x4491bd4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:47:45             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:47:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x4491bd4d', '0xd')]
20/10/2020 15:47:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:47              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x7e3c6b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:47             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:47:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e3c6b1', '0x1')]
20/10/2020 15:47:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:48              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x1c3eebf7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:47:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x1c3eebf7', '0x7')]
20/10/2020 15:47:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:49              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x4491bd4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:47:49             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:47:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x4491bd4d', '0xd')]
20/10/2020 15:47:49             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:47:49              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:47:50              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:47:50              dut.10.240.183.67: flow list 0
20/10/2020 15:47:50              dut.10.240.183.67: 
20/10/2020 15:47:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:51              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:51             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:47:51             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:47:51             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:47:51             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_tcp_l3dst_l4dst passed
20/10/2020 15:47:51              dut.10.240.183.67: flow flush 0
20/10/2020 15:47:51              dut.10.240.183.67: 
20/10/2020 15:47:51             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_tcp_l3src_l4src================
20/10/2020 15:47:51             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:47:51              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:47:51              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:47:51              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:47:51              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:47:51              dut.10.240.183.67: flow list 0
20/10/2020 15:47:51              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 TCP => RSS
20/10/2020 15:47:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:52              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2f2c35f1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:52             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:47:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x2f2c35f1', '0x1')]
20/10/2020 15:47:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:54              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x66c268bd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:47:54             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:47:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x66c268bd', '0xd')]
20/10/2020 15:47:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:55              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xdc891a3c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:47:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc891a3c', '0xc')]
20/10/2020 15:47:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:56              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x2f2c35f1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:56             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:47:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x2f2c35f1', '0x1')]
20/10/2020 15:47:56             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:47:56              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:47:57              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:47:57              dut.10.240.183.67: flow list 0
20/10/2020 15:47:57              dut.10.240.183.67: 
20/10/2020 15:47:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:58              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:47:58             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:47:58             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:47:58             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:47:58             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_tcp_l3src_l4src passed
20/10/2020 15:47:58              dut.10.240.183.67: flow flush 0
20/10/2020 15:47:58              dut.10.240.183.67: 
20/10/2020 15:47:58             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_tcp_l3src_l4dst================
20/10/2020 15:47:58             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:47:58              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:47:58              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:47:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:47:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:47:58              dut.10.240.183.67: flow list 0
20/10/2020 15:47:58              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 TCP => RSS
20/10/2020 15:47:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:47:59              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x84264c86 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:47:59             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:47:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x84264c86', '0x6')]
20/10/2020 15:47:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:01              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xcdc811ca - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:01             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:48:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xcdc811ca', '0xa')]
20/10/2020 15:48:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:02              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xdc891a3c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:02             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:48:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc891a3c', '0xc')]
20/10/2020 15:48:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:03              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x84264c86 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:48:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:48:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x84264c86', '0x6')]
20/10/2020 15:48:03             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:48:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:48:04              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:48:04              dut.10.240.183.67: flow list 0
20/10/2020 15:48:04              dut.10.240.183.67: 
20/10/2020 15:48:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:05              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:05             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 15:48:05             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_tcp_l3src_l4dst passed
20/10/2020 15:48:05              dut.10.240.183.67: flow flush 0
20/10/2020 15:48:05              dut.10.240.183.67: 
20/10/2020 15:48:05             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_tcp_l4src================
20/10/2020 15:48:05             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:48:05              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:48:05              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:48:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:48:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:48:05              dut.10.240.183.67: flow list 0
20/10/2020 15:48:05              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 TCP => RSS
20/10/2020 15:48:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:06              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb4a35578 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:48:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xb4a35578', '0x8')]
20/10/2020 15:48:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:08              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x5841dd46 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:48:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:48:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x5841dd46', '0x6')]
20/10/2020 15:48:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:09              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb4a35578 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:48:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xb4a35578', '0x8')]
20/10/2020 15:48:09             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:48:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:48:10              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:48:10              dut.10.240.183.67: flow list 0
20/10/2020 15:48:10              dut.10.240.183.67: 
20/10/2020 15:48:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:11              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:11             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:48:11             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:48:11             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:48:11             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_tcp_l4src passed
20/10/2020 15:48:11              dut.10.240.183.67: flow flush 0
20/10/2020 15:48:11              dut.10.240.183.67: 
20/10/2020 15:48:11             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_tcp_l4dst================
20/10/2020 15:48:11             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:48:11              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:48:11              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:48:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:48:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:48:11              dut.10.240.183.67: flow list 0
20/10/2020 15:48:11              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 TCP => RSS
20/10/2020 15:48:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:12              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x58461c01 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:12             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:48:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x58461c01', '0x1')]
20/10/2020 15:48:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:13              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xb4a4943f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:48:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xb4a4943f', '0xf')]
20/10/2020 15:48:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:15              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x58461c01 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:15             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:48:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x58461c01', '0x1')]
20/10/2020 15:48:15             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:48:15              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:48:16              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:48:16              dut.10.240.183.67: flow list 0
20/10/2020 15:48:16              dut.10.240.183.67: 
20/10/2020 15:48:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:17              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:17             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:48:17             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:48:17             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:48:17             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_tcp_l4dst passed
20/10/2020 15:48:17              dut.10.240.183.67: flow flush 0
20/10/2020 15:48:17              dut.10.240.183.67: 
20/10/2020 15:48:17             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_tcp_all================
20/10/2020 15:48:17             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:48:17              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:48:17              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:48:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:48:17              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:48:17              dut.10.240.183.67: flow list 0
20/10/2020 15:48:17              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 TCP => RSS
20/10/2020 15:48:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:18              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x1352c6bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:18             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:48:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x1352c6bf', '0xf')]
20/10/2020 15:48:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:19              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x5109532d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:48:19             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:48:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x5109532d', '0xd')]
20/10/2020 15:48:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:20              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x86c01404 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:48:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:48:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x86c01404', '0x4')]
20/10/2020 15:48:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:22              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x7c0b4052 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:48:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:48:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x7c0b4052', '0x2')]
20/10/2020 15:48:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:23              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x5abc9bf3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:48:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:48:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x5abc9bf3', '0x3')]
20/10/2020 15:48:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:24              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0x1352c6bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:48:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x1352c6bf', '0xf')]
20/10/2020 15:48:24             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:48:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:48:25              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:48:25              dut.10.240.183.67: flow list 0
20/10/2020 15:48:25              dut.10.240.183.67: 
20/10/2020 15:48:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:26              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:26             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:48:26             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:48:26             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:48:26             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_tcp_all passed
20/10/2020 15:48:26              dut.10.240.183.67: flow flush 0
20/10/2020 15:48:26              dut.10.240.183.67: 
20/10/2020 15:48:26             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv6_tcp_l3dst': 'passed', 'mac_ipv4_gtpu_ipv6_tcp_l3src': 'passed', 'mac_ipv4_gtpu_ipv6_tcp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_ipv6_tcp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_ipv6_tcp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_ipv6_tcp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_ipv6_tcp_l4src': 'passed', 'mac_ipv4_gtpu_ipv6_tcp_l4dst': 'passed', 'mac_ipv4_gtpu_ipv6_tcp_all': 'passed'}
20/10/2020 15:48:26             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:48:26             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv6_tcp Result PASSED:
20/10/2020 15:48:26              dut.10.240.183.67: flow flush 0
20/10/2020 15:48:27              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:48:27              dut.10.240.183.67: clear port stats all
20/10/2020 15:48:29              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:48:29              dut.10.240.183.67: stop
20/10/2020 15:48:29              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:48:29             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv6_tcp_symmetric Begin
20/10/2020 15:48:29              dut.10.240.183.67: 
20/10/2020 15:48:29                         tester: 
20/10/2020 15:48:29              dut.10.240.183.67: start
20/10/2020 15:48:29              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:48:29              dut.10.240.183.67: quit
20/10/2020 15:48:30              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:48:30              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:48:31              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:48:41              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:48:42              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:48:42              dut.10.240.183.67: set verbose 1
20/10/2020 15:48:42              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:48:42              dut.10.240.183.67: show port info all
20/10/2020 15:48:42              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:48:42              dut.10.240.183.67: start
20/10/2020 15:48:42              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:48:42             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_tcp_symmetric================
20/10/2020 15:48:42             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:48:42              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end  actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:48:42              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:48:42              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / tcp / end  actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 15:48:42              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:48:42              dut.10.240.183.67: flow list 0
20/10/2020 15:48:42              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 TCP => RSS
20/10/2020 15:48:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:43              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xf6ad3d9a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:43             TestCVLIAVFRSSGTPU: action: {'save_hash': 'basic_with_rule'}

20/10/2020 15:48:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xf6ad3d9a', '0xa')]
20/10/2020 15:48:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:44              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xf6ad3d9a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:48:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xf6ad3d9a', '0xa')]
20/10/2020 15:48:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:45              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xf6ad3d9a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:45             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:48:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xf6ad3d9a', '0xa')]
20/10/2020 15:48:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:46              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - RSS hash=0xf6ad3d9a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:46             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:48:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xf6ad3d9a', '0xa')]
20/10/2020 15:48:46             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:48:46              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:48:47              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:48:47              dut.10.240.183.67: flow list 0
20/10/2020 15:48:48              dut.10.240.183.67: 
20/10/2020 15:48:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:49              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:49             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:48:49             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:48:49             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:48:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:50              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:50             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:48:50             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:48:50             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:48:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:51              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=590 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:51             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:48:51             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:48:51             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:48:51             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_tcp_symmetric passed
20/10/2020 15:48:51              dut.10.240.183.67: flow flush 0
20/10/2020 15:48:51              dut.10.240.183.67: 
20/10/2020 15:48:51             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv4_tcp_symmetric': 'passed'}
20/10/2020 15:48:51             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:48:51             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv6_tcp_symmetric Result PASSED:
20/10/2020 15:48:51              dut.10.240.183.67: flow flush 0
20/10/2020 15:48:52              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:48:52              dut.10.240.183.67: clear port stats all
20/10/2020 15:48:53              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:48:53              dut.10.240.183.67: stop
20/10/2020 15:48:53              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:48:53             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv6_udp Begin
20/10/2020 15:48:53              dut.10.240.183.67: 
20/10/2020 15:48:54                         tester: 
20/10/2020 15:48:54              dut.10.240.183.67: start
20/10/2020 15:48:54              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:48:54             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_udp_l3dst================
20/10/2020 15:48:54             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:48:54              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:48:54              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:48:54              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:48:54              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:48:54              dut.10.240.183.67: flow list 0
20/10/2020 15:48:54              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 UDP => RSS
20/10/2020 15:48:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:55              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x8d298e8e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:55             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:48:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x8d298e8e', '0xe')]
20/10/2020 15:48:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:56              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x8cb878fb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:48:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x8cb878fb', '0xb')]
20/10/2020 15:48:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:57              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x8d298e8e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:57             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:48:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x8d298e8e', '0xe')]
20/10/2020 15:48:57             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:48:57              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:48:58              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:48:58              dut.10.240.183.67: flow list 0
20/10/2020 15:48:58              dut.10.240.183.67: 
20/10/2020 15:48:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:48:59              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:48:59             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:48:59             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:48:59             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:48:59             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_udp_l3dst passed
20/10/2020 15:48:59              dut.10.240.183.67: flow flush 0
20/10/2020 15:48:59              dut.10.240.183.67: 
20/10/2020 15:48:59             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_udp_l3src================
20/10/2020 15:48:59             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:48:59              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:49:00              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:49:00              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:49:00              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:49:00              dut.10.240.183.67: flow list 0
20/10/2020 15:49:00              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 UDP => RSS
20/10/2020 15:49:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:01              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xf2259b5e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:01             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:49:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xf2259b5e', '0xe')]
20/10/2020 15:49:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:02              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xf2259b5e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:49:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xf2259b5e', '0xe')]
20/10/2020 15:49:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:03              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xcea79c62 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:49:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xcea79c62', '0x2')]
20/10/2020 15:49:03             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:49:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:49:04              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:49:04              dut.10.240.183.67: flow list 0
20/10/2020 15:49:04              dut.10.240.183.67: 
20/10/2020 15:49:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:05              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:05             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:49:05             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:49:05             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:49:05             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_udp_l3src passed
20/10/2020 15:49:05              dut.10.240.183.67: flow flush 0
20/10/2020 15:49:05              dut.10.240.183.67: 
20/10/2020 15:49:05             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_udp_l3dst_l4src================
20/10/2020 15:49:05             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:49:05              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:49:05              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:49:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:49:06              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:49:06              dut.10.240.183.67: flow list 0
20/10/2020 15:49:06              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 UDP => RSS
20/10/2020 15:49:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:07              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x2539e099 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:07             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:49:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x2539e099', '0x9')]
20/10/2020 15:49:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:08              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x24a816ec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x24a816ec', '0xc')]
20/10/2020 15:49:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:09              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xe912a46c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xe912a46c', '0xc')]
20/10/2020 15:49:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:10              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x2539e099 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:10             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:49:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x2539e099', '0x9')]
20/10/2020 15:49:10             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:49:10              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:49:11              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:49:11              dut.10.240.183.67: flow list 0
20/10/2020 15:49:11              dut.10.240.183.67: 
20/10/2020 15:49:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:12              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:12             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:49:12             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:49:12             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:49:12             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_udp_l3dst_l4src passed
20/10/2020 15:49:12              dut.10.240.183.67: flow flush 0
20/10/2020 15:49:12              dut.10.240.183.67: 
20/10/2020 15:49:12             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_udp_l3dst_l4dst================
20/10/2020 15:49:12             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:49:12              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:49:12              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:49:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:49:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:49:12              dut.10.240.183.67: flow list 0
20/10/2020 15:49:13              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 UDP => RSS
20/10/2020 15:49:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:14              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xa5031d93 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:49:14             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:49:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5031d93', '0x3')]
20/10/2020 15:49:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:15              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xa492ebe6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:49:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xa492ebe6', '0x6')]
20/10/2020 15:49:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:16              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xe912a46c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xe912a46c', '0xc')]
20/10/2020 15:49:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:17              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xa5031d93 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:49:17             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:49:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5031d93', '0x3')]
20/10/2020 15:49:17             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:49:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:49:18              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:49:18              dut.10.240.183.67: flow list 0
20/10/2020 15:49:18              dut.10.240.183.67: 
20/10/2020 15:49:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:19              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:19             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:49:19             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:49:19             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:49:19             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_udp_l3dst_l4dst passed
20/10/2020 15:49:19              dut.10.240.183.67: flow flush 0
20/10/2020 15:49:19              dut.10.240.183.67: 
20/10/2020 15:49:19             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_udp_l3src_l4src================
20/10/2020 15:49:19             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:49:19              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:49:19              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:49:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:49:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:49:19              dut.10.240.183.67: flow list 0
20/10/2020 15:49:20              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 UDP => RSS
20/10/2020 15:49:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:21              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x5a35f549 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:21             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:49:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x5a35f549', '0x9')]
20/10/2020 15:49:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:22              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x66b7f275 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:49:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x66b7f275', '0x5')]
20/10/2020 15:49:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:23              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x961eb1bc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x961eb1bc', '0xc')]
20/10/2020 15:49:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:24              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x5a35f549 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:49:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x5a35f549', '0x9')]
20/10/2020 15:49:24             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:49:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:49:25              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:49:25              dut.10.240.183.67: flow list 0
20/10/2020 15:49:25              dut.10.240.183.67: 
20/10/2020 15:49:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:26              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:26             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:49:26             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:49:26             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:49:26             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_udp_l3src_l4src passed
20/10/2020 15:49:26              dut.10.240.183.67: flow flush 0
20/10/2020 15:49:26              dut.10.240.183.67: 
20/10/2020 15:49:26             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_udp_l3src_l4dst================
20/10/2020 15:49:26             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:49:26              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:49:26              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:49:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:49:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:49:26              dut.10.240.183.67: flow list 0
20/10/2020 15:49:27              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 UDP => RSS
20/10/2020 15:49:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:28              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xda0f0843 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:49:28             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:49:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xda0f0843', '0x3')]
20/10/2020 15:49:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:29              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xe68d0f7f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xe68d0f7f', '0xf')]
20/10/2020 15:49:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:30              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x961eb1bc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x961eb1bc', '0xc')]
20/10/2020 15:49:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:31              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xda0f0843 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:49:31             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:49:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xda0f0843', '0x3')]
20/10/2020 15:49:31             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:49:31              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:49:32              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:49:32              dut.10.240.183.67: flow list 0
20/10/2020 15:49:32              dut.10.240.183.67: 
20/10/2020 15:49:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:33              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:33             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 15:49:33             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_udp_l3src_l4dst passed
20/10/2020 15:49:33              dut.10.240.183.67: flow flush 0
20/10/2020 15:49:33              dut.10.240.183.67: 
20/10/2020 15:49:33             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_udp_l4src================
20/10/2020 15:49:33             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:49:33              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:49:33              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:49:33              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:49:33              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:49:33              dut.10.240.183.67: flow list 0
20/10/2020 15:49:34              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 UDP => RSS
20/10/2020 15:49:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:35              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x6fe18eb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:49:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x6fe18eb0', '0x0')]
20/10/2020 15:49:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:36              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x72d5a083 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:49:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x72d5a083', '0x3')]
20/10/2020 15:49:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x6fe18eb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:49:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x6fe18eb0', '0x0')]
20/10/2020 15:49:37             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:49:37              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:49:38              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:49:38              dut.10.240.183.67: flow list 0
20/10/2020 15:49:38              dut.10.240.183.67: 
20/10/2020 15:49:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:39              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:39             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:49:39             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:49:39             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:49:39             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_udp_l4src passed
20/10/2020 15:49:39              dut.10.240.183.67: flow flush 0
20/10/2020 15:49:39              dut.10.240.183.67: 
20/10/2020 15:49:39             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_udp_l4dst================
20/10/2020 15:49:39             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:49:39              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:49:39              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:49:39              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:49:39              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:49:39              dut.10.240.183.67: flow list 0
20/10/2020 15:49:39              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 UDP => RSS
20/10/2020 15:49:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:41              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x62102d72 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:49:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:49:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x62102d72', '0x2')]
20/10/2020 15:49:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:42              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x7f240341 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x7f240341', '0x1')]
20/10/2020 15:49:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:43              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x62102d72 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:49:43             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:49:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x62102d72', '0x2')]
20/10/2020 15:49:43             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:49:43              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:49:44              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:49:44              dut.10.240.183.67: flow list 0
20/10/2020 15:49:44              dut.10.240.183.67: 
20/10/2020 15:49:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:45              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:45             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:49:45             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:49:45             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:49:45             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_udp_l4dst passed
20/10/2020 15:49:45              dut.10.240.183.67: flow flush 0
20/10/2020 15:49:45              dut.10.240.183.67: 
20/10/2020 15:49:45             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv6_udp_all================
20/10/2020 15:49:45             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:49:45              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:49:45              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:49:45              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:49:45              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:49:45              dut.10.240.183.67: flow list 0
20/10/2020 15:49:45              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 UDP => RSS
20/10/2020 15:49:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:46              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x10b22a42 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:49:46             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:49:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x10b22a42', '0x2')]
20/10/2020 15:49:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:48              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x3d0fffec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x3d0fffec', '0xc')]
20/10/2020 15:49:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:49              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xc51cdac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xc51cdac8', '0x8')]
20/10/2020 15:49:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:50              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x8ba519b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x8ba519b', '0xb')]
20/10/2020 15:49:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:51              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x2c302d7e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:49:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x2c302d7e', '0xe')]
20/10/2020 15:49:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:52              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0x10b22a42 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:49:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:49:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x10b22a42', '0x2')]
20/10/2020 15:49:52             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:49:52              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:49:53              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:49:53              dut.10.240.183.67: flow list 0
20/10/2020 15:49:53              dut.10.240.183.67: 
20/10/2020 15:49:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:49:54              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:49:54             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:49:54             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:49:54             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:49:54             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv6_udp_all passed
20/10/2020 15:49:54              dut.10.240.183.67: flow flush 0
20/10/2020 15:49:54              dut.10.240.183.67: 
20/10/2020 15:49:54             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv6_udp_l3dst': 'passed', 'mac_ipv4_gtpu_ipv6_udp_l3src': 'passed', 'mac_ipv4_gtpu_ipv6_udp_l3dst_l4src': 'passed', 'mac_ipv4_gtpu_ipv6_udp_l3dst_l4dst': 'passed', 'mac_ipv4_gtpu_ipv6_udp_l3src_l4src': 'passed', 'mac_ipv4_gtpu_ipv6_udp_l3src_l4dst': 'passed', 'mac_ipv4_gtpu_ipv6_udp_l4src': 'passed', 'mac_ipv4_gtpu_ipv6_udp_l4dst': 'passed', 'mac_ipv4_gtpu_ipv6_udp_all': 'passed'}
20/10/2020 15:49:54             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:49:54             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv6_udp Result PASSED:
20/10/2020 15:49:54              dut.10.240.183.67: flow flush 0
20/10/2020 15:49:55              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:49:55              dut.10.240.183.67: clear port stats all
20/10/2020 15:49:57              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:49:57              dut.10.240.183.67: stop
20/10/2020 15:49:57              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:49:57             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv6_udp_symmetric Begin
20/10/2020 15:49:57              dut.10.240.183.67: 
20/10/2020 15:49:57                         tester: 
20/10/2020 15:49:57              dut.10.240.183.67: start
20/10/2020 15:49:57              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:49:57              dut.10.240.183.67: quit
20/10/2020 15:49:59              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:49:59              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:50:00              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:50:10              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:50:10              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:50:10              dut.10.240.183.67: set verbose 1
20/10/2020 15:50:10              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:50:10              dut.10.240.183.67: show port info all
20/10/2020 15:50:10              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:50:10              dut.10.240.183.67: start
20/10/2020 15:50:10              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:50:10             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv4_gtpu_ipv4_udp_symmetric================
20/10/2020 15:50:10             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:50:10              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss func symmetric_toeplitz types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:50:10              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:50:10              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv6 / udp / end actions rss func symmetric_toeplitz types ipv6-udp end key_len 0 queues end / end
20/10/2020 15:50:10              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:50:10              dut.10.240.183.67: flow list 0
20/10/2020 15:50:10              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU IPV6 UDP => RSS
20/10/2020 15:50:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:11              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xf187134b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:11             TestCVLIAVFRSSGTPU: action: {'save_hash': 'basic_with_rule'}

20/10/2020 15:50:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xf187134b', '0xb')]
20/10/2020 15:50:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:13              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xf187134b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:50:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xf187134b', '0xb')]
20/10/2020 15:50:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:14              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xf187134b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:14             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:50:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xf187134b', '0xb')]
20/10/2020 15:50:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:15              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - RSS hash=0xf187134b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:15             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:50:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xf187134b', '0xb')]
20/10/2020 15:50:15             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:50:15              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:50:16              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:50:16              dut.10.240.183.67: flow list 0
20/10/2020 15:50:16              dut.10.240.183.67: 
20/10/2020 15:50:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:17              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:17             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:50:17             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:50:17             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:50:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:18              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:18             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:50:18             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:50:18             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:50:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:19              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=578 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:19             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:50:19             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 15:50:19             TestCVLIAVFRSSGTPU: There no hash value passed as expected
20/10/2020 15:50:19             TestCVLIAVFRSSGTPU: sub_case mac_ipv4_gtpu_ipv4_udp_symmetric passed
20/10/2020 15:50:19              dut.10.240.183.67: flow flush 0
20/10/2020 15:50:19              dut.10.240.183.67: 
20/10/2020 15:50:19             TestCVLIAVFRSSGTPU: {'mac_ipv4_gtpu_ipv4_udp_symmetric': 'passed'}
20/10/2020 15:50:19             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:50:19             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv4_gtpu_ipv6_udp_symmetric Result PASSED:
20/10/2020 15:50:19              dut.10.240.183.67: flow flush 0
20/10/2020 15:50:21              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:50:21              dut.10.240.183.67: clear port stats all
20/10/2020 15:50:22              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:50:22              dut.10.240.183.67: stop
20/10/2020 15:50:22              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:50:22             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4 Begin
20/10/2020 15:50:22              dut.10.240.183.67: 
20/10/2020 15:50:22                         tester: 
20/10/2020 15:50:22              dut.10.240.183.67: start
20/10/2020 15:50:22              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:50:22             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_l3dst================
20/10/2020 15:50:22             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:50:22              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:50:22              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:50:22              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:50:22              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:50:22              dut.10.240.183.67: flow list 0
20/10/2020 15:50:22              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:50:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:23              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:23             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:50:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:50:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:24              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x89f973e7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:50:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x89f973e7', '0x7')]
20/10/2020 15:50:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:26              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:26             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:50:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:50:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:27              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:27             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:50:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:50:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:28              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x89f973e7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:50:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x89f973e7', '0x7')]
20/10/2020 15:50:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:29              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:29             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:50:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:50:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:30              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:30             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:50:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:50:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:31              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x89f973e7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:50:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x89f973e7', '0x7')]
20/10/2020 15:50:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:32             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:50:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:50:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:33              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:33             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:50:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:50:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:34              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x89f973e7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:50:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x89f973e7', '0x7')]
20/10/2020 15:50:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:36              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:50:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:50:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:37             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:50:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:50:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:38              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x89f973e7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:50:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x89f973e7', '0x7')]
20/10/2020 15:50:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:39              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:39             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:50:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:50:39             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:50:39              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:50:40              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:50:40              dut.10.240.183.67: flow list 0
20/10/2020 15:50:40              dut.10.240.183.67: 
20/10/2020 15:50:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:41              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:41             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:50:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1')]
20/10/2020 15:50:41             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_l3dst passed
20/10/2020 15:50:41              dut.10.240.183.67: flow flush 0
20/10/2020 15:50:41              dut.10.240.183.67: 
20/10/2020 15:50:41             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_l3src================
20/10/2020 15:50:41             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:50:41              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:50:41              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:50:41              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:50:41              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:50:41              dut.10.240.183.67: flow list 0
20/10/2020 15:50:42              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:50:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:43              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:43             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:50:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:50:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:44              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:50:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:50:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:45              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x5b8b9fae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:50:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b8b9fae', '0xe')]
20/10/2020 15:50:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:46              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:46             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:50:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:50:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:47              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:50:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:50:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:48              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x5b8b9fae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:50:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b8b9fae', '0xe')]
20/10/2020 15:50:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:49              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:49             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:50:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:50:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:50              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:50:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:50:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:51              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x5b8b9fae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:50:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b8b9fae', '0xe')]
20/10/2020 15:50:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:53              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:53             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:50:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:50:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:54              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:50:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:50:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:55              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x5b8b9fae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:50:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b8b9fae', '0xe')]
20/10/2020 15:50:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:56              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:56             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:50:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:50:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:57              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:57             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:50:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:50:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:50:58              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x5b8b9fae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:50:58             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:50:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b8b9fae', '0xe')]
20/10/2020 15:50:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:50:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:50:59              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:50:59              dut.10.240.183.67: flow list 0
20/10/2020 15:50:59              dut.10.240.183.67: 
20/10/2020 15:50:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:01              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:01             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:51:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1')]
20/10/2020 15:51:01             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_l3src passed
20/10/2020 15:51:01              dut.10.240.183.67: flow flush 0
20/10/2020 15:51:01              dut.10.240.183.67: 
20/10/2020 15:51:01             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_all================
20/10/2020 15:51:01             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:51:01              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 15:51:01              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:51:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 15:51:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:51:01              dut.10.240.183.67: flow list 0
20/10/2020 15:51:01              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:51:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:02              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xfcb875b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:02             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xfcb875b', '0xb')]
20/10/2020 15:51:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:03              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x81deb200 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x81deb200', '0x0')]
20/10/2020 15:51:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:04              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xcd57dbec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xcd57dbec', '0xc')]
20/10/2020 15:51:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:05              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4342eeb7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:05             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x4342eeb7', '0x7')]
20/10/2020 15:51:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:06              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xfcb875b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xfcb875b', '0xb')]
20/10/2020 15:51:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:07              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x81deb200 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x81deb200', '0x0')]
20/10/2020 15:51:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:09              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xcd57dbec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xcd57dbec', '0xc')]
20/10/2020 15:51:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:10              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4342eeb7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x4342eeb7', '0x7')]
20/10/2020 15:51:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:11              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfcb875b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:11             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xfcb875b', '0xb')]
20/10/2020 15:51:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:12              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x81deb200 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:12             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x81deb200', '0x0')]
20/10/2020 15:51:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:13              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xcd57dbec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xcd57dbec', '0xc')]
20/10/2020 15:51:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:14              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4342eeb7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x4342eeb7', '0x7')]
20/10/2020 15:51:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:15              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfcb875b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:15             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xfcb875b', '0xb')]
20/10/2020 15:51:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:16              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x81deb200 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x81deb200', '0x0')]
20/10/2020 15:51:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:17              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xcd57dbec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xcd57dbec', '0xc')]
20/10/2020 15:51:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:18              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4342eeb7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x4342eeb7', '0x7')]
20/10/2020 15:51:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:20              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xfcb875b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:20             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xfcb875b', '0xb')]
20/10/2020 15:51:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:21              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x81deb200 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:21             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x81deb200', '0x0')]
20/10/2020 15:51:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:22              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xcd57dbec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xcd57dbec', '0xc')]
20/10/2020 15:51:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:23              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4342eeb7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x4342eeb7', '0x7')]
20/10/2020 15:51:23             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:51:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:51:24              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:51:24              dut.10.240.183.67: flow list 0
20/10/2020 15:51:24              dut.10.240.183.67: 
20/10/2020 15:51:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:25              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:25             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:51:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1')]
20/10/2020 15:51:25             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_all passed
20/10/2020 15:51:25              dut.10.240.183.67: flow flush 0
20/10/2020 15:51:25              dut.10.240.183.67: 
20/10/2020 15:51:25             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_l3dst================
20/10/2020 15:51:25             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:51:25              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:51:25              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:51:25              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 15:51:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:51:26              dut.10.240.183.67: flow list 0
20/10/2020 15:51:26              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:51:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:27              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:27             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:51:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:28              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x89f973e7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x89f973e7', '0x7')]
20/10/2020 15:51:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:29              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:29             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:51:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:51:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:30              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:30             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:51:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:31              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x89f973e7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x89f973e7', '0x7')]
20/10/2020 15:51:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:32             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:51:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:51:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:33              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:33             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:51:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:34              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x89f973e7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x89f973e7', '0x7')]
20/10/2020 15:51:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:36              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:51:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:51:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:37             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:51:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:38              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x89f973e7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x89f973e7', '0x7')]
20/10/2020 15:51:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:39              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:39             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:51:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:51:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:40              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:40             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:51:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:41              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x89f973e7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:41             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x89f973e7', '0x7')]
20/10/2020 15:51:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:42              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4b652f50 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:42             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:51:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b652f50', '0x0')]
20/10/2020 15:51:42             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:51:42              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:51:43              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:51:43              dut.10.240.183.67: flow list 0
20/10/2020 15:51:43              dut.10.240.183.67: 
20/10/2020 15:51:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:45              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:45             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:51:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1')]
20/10/2020 15:51:45             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_l3dst passed
20/10/2020 15:51:45              dut.10.240.183.67: flow flush 0
20/10/2020 15:51:45              dut.10.240.183.67: 
20/10/2020 15:51:45             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_l3src================
20/10/2020 15:51:45             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:51:45              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:51:45              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:51:45              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 15:51:45              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:51:45              dut.10.240.183.67: flow list 0
20/10/2020 15:51:45              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:51:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:46              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:46             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:51:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:47              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:51:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:51:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:48              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x5b8b9fae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b8b9fae', '0xe')]
20/10/2020 15:51:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:49              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:49             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:51:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:50              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:51:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:51:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:51              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x5b8b9fae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b8b9fae', '0xe')]
20/10/2020 15:51:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:53              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:53             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:51:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:54              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:51:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:51:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:55              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x5b8b9fae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b8b9fae', '0xe')]
20/10/2020 15:51:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:56              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:56             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:51:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:57              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:57             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:51:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:51:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:58              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x5b8b9fae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:58             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:51:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b8b9fae', '0xe')]
20/10/2020 15:51:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:51:59              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:51:59             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:51:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:51:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:00              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x9917c319 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:00             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:52:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x9917c319', '0x9')]
20/10/2020 15:52:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:01              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x5b8b9fae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:01             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b8b9fae', '0xe')]
20/10/2020 15:52:01             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:52:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:52:03              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:52:03              dut.10.240.183.67: flow list 0
20/10/2020 15:52:03              dut.10.240.183.67: 
20/10/2020 15:52:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:04              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:04             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:52:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1')]
20/10/2020 15:52:04             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_l3src passed
20/10/2020 15:52:04              dut.10.240.183.67: flow flush 0
20/10/2020 15:52:04              dut.10.240.183.67: 
20/10/2020 15:52:04             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_all================
20/10/2020 15:52:04             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:52:04              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 15:52:04              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:52:04              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 15:52:04              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:52:04              dut.10.240.183.67: flow list 0
20/10/2020 15:52:04              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:52:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:05              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xfcb875b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:05             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:52:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xfcb875b', '0xb')]
20/10/2020 15:52:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:06              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x81deb200 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:06             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x81deb200', '0x0')]
20/10/2020 15:52:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:07              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xcd57dbec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xcd57dbec', '0xc')]
20/10/2020 15:52:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:08              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4342eeb7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x4342eeb7', '0x7')]
20/10/2020 15:52:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:10              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xfcb875b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:10             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:52:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xfcb875b', '0xb')]
20/10/2020 15:52:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:11              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x81deb200 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x81deb200', '0x0')]
20/10/2020 15:52:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:12              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xcd57dbec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:12             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xcd57dbec', '0xc')]
20/10/2020 15:52:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:13              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4342eeb7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x4342eeb7', '0x7')]
20/10/2020 15:52:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:14              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfcb875b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:14             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:52:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xfcb875b', '0xb')]
20/10/2020 15:52:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:15              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x81deb200 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x81deb200', '0x0')]
20/10/2020 15:52:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:16              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xcd57dbec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xcd57dbec', '0xc')]
20/10/2020 15:52:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:17              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4342eeb7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x4342eeb7', '0x7')]
20/10/2020 15:52:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:18              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfcb875b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:18             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:52:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xfcb875b', '0xb')]
20/10/2020 15:52:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:20              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x81deb200 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x81deb200', '0x0')]
20/10/2020 15:52:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:21              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xcd57dbec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:21             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:21             TestCVLIAVFRSSGTPU: hash_infos: [('0xcd57dbec', '0xc')]
20/10/2020 15:52:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:22              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4342eeb7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x4342eeb7', '0x7')]
20/10/2020 15:52:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:23              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xfcb875b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:23             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:52:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xfcb875b', '0xb')]
20/10/2020 15:52:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:24              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x81deb200 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x81deb200', '0x0')]
20/10/2020 15:52:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:25              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xcd57dbec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xcd57dbec', '0xc')]
20/10/2020 15:52:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:26              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4342eeb7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:52:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x4342eeb7', '0x7')]
20/10/2020 15:52:26             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:52:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:52:27              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:52:27              dut.10.240.183.67: flow list 0
20/10/2020 15:52:27              dut.10.240.183.67: 
20/10/2020 15:52:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:29              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc156c401 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:29             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:52:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1'), ('0xc156c401', '0x1')]
20/10/2020 15:52:29             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_all passed
20/10/2020 15:52:29              dut.10.240.183.67: flow flush 0
20/10/2020 15:52:29              dut.10.240.183.67: 
20/10/2020 15:52:29             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_dl_ipv4_l3dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_l3src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_all': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_l3dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_all': 'passed'}
20/10/2020 15:52:29             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:52:29             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4 Result PASSED:
20/10/2020 15:52:29              dut.10.240.183.67: flow flush 0
20/10/2020 15:52:30              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:52:30              dut.10.240.183.67: clear port stats all
20/10/2020 15:52:31              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:52:31              dut.10.240.183.67: stop
20/10/2020 15:52:31              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:52:31             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_symmetric Begin
20/10/2020 15:52:31              dut.10.240.183.67: 
20/10/2020 15:52:31                         tester: 
20/10/2020 15:52:31              dut.10.240.183.67: start
20/10/2020 15:52:31              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:52:31              dut.10.240.183.67: quit
20/10/2020 15:52:33              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:52:33              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:52:34              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:52:44              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:52:44              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:52:44              dut.10.240.183.67: set verbose 1
20/10/2020 15:52:44              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:52:44              dut.10.240.183.67: show port info all
20/10/2020 15:52:44              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:52:44              dut.10.240.183.67: start
20/10/2020 15:52:44              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:52:44             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_symmetric================
20/10/2020 15:52:44             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:52:44              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:52:44              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:52:44              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:52:44              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:52:44              dut.10.240.183.67: flow list 0
20/10/2020 15:52:44              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:52:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:45              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xefd63a19 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:45             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 15:52:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xefd63a19', '0x9')]
20/10/2020 15:52:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:47              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xefd63a19 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:52:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xefd63a19', '0x9')]
20/10/2020 15:52:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:48              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xf97abf9b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:48             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 15:52:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xf97abf9b', '0xb')]
20/10/2020 15:52:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:49              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xf97abf9b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:49             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:52:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xf97abf9b', '0xb')]
20/10/2020 15:52:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:50              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xea11da4f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:50             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 15:52:50             TestCVLIAVFRSSGTPU: hash_infos: [('0xea11da4f', '0xf')]
20/10/2020 15:52:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:51              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xea11da4f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:52:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xea11da4f', '0xf')]
20/10/2020 15:52:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:52              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xefd63a19 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:52             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 15:52:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xefd63a19', '0x9')]
20/10/2020 15:52:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:53              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xefd63a19 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:52:53             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:52:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xefd63a19', '0x9')]
20/10/2020 15:52:53             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:52:53              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:52:54              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:52:54              dut.10.240.183.67: flow list 0
20/10/2020 15:52:54              dut.10.240.183.67: 
20/10/2020 15:52:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:55              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:52:55             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 15:52:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:52:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:57              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:52:57             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 15:52:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:52:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:58              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:52:58             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 15:52:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:52:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:52:59              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:52:59             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-udp'}

20/10/2020 15:52:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:52:59             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_symmetric passed
20/10/2020 15:52:59              dut.10.240.183.67: flow flush 0
20/10/2020 15:52:59              dut.10.240.183.67: 
20/10/2020 15:52:59             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_symmetric================
20/10/2020 15:52:59             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:52:59              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:52:59              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:52:59              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 15:52:59              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:52:59              dut.10.240.183.67: flow list 0
20/10/2020 15:52:59              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 15:52:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:00              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xefd63a19 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:00             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 15:53:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xefd63a19', '0x9')]
20/10/2020 15:53:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:01              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xefd63a19 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:53:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xefd63a19', '0x9')]
20/10/2020 15:53:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:02              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xf97abf9b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:02             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 15:53:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xf97abf9b', '0xb')]
20/10/2020 15:53:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:04              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xf97abf9b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:04             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:53:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xf97abf9b', '0xb')]
20/10/2020 15:53:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:05              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xea11da4f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:05             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 15:53:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xea11da4f', '0xf')]
20/10/2020 15:53:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:06              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xea11da4f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:53:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xea11da4f', '0xf')]
20/10/2020 15:53:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:07              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xefd63a19 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:07             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 15:53:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xefd63a19', '0x9')]
20/10/2020 15:53:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:08              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xefd63a19 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:08             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:53:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xefd63a19', '0x9')]
20/10/2020 15:53:08             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:53:08              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:53:09              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:53:09              dut.10.240.183.67: flow list 0
20/10/2020 15:53:09              dut.10.240.183.67: 
20/10/2020 15:53:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:10              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:10             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 15:53:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:53:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:11              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:11             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 15:53:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:53:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:12              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:12             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 15:53:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:53:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:14              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:14             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-udp'}

20/10/2020 15:53:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:53:14             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_symmetric passed
20/10/2020 15:53:14              dut.10.240.183.67: flow flush 0
20/10/2020 15:53:14              dut.10.240.183.67: 
20/10/2020 15:53:14             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_dl_ipv4_symmetric': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_symmetric': 'passed'}
20/10/2020 15:53:14             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:53:14             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_symmetric Result PASSED:
20/10/2020 15:53:14              dut.10.240.183.67: flow flush 0
20/10/2020 15:53:15              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:53:15              dut.10.240.183.67: clear port stats all
20/10/2020 15:53:16              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:53:16              dut.10.240.183.67: stop
20/10/2020 15:53:16              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

Done.
20/10/2020 15:53:16             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_tcp Begin
20/10/2020 15:53:16              dut.10.240.183.67: 
20/10/2020 15:53:16                         tester: 
20/10/2020 15:53:16              dut.10.240.183.67: start
20/10/2020 15:53:16              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:53:16             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3dst================
20/10/2020 15:53:16             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:53:16              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:53:16              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:53:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:53:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:53:16              dut.10.240.183.67: flow list 0
20/10/2020 15:53:17              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:53:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:18              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4120d010 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:18             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:53:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x4120d010', '0x0')]
20/10/2020 15:53:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:19              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xa279b1c0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:19             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:53:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xa279b1c0', '0x0')]
20/10/2020 15:53:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:20              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4120d010 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:20             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:53:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x4120d010', '0x0')]
20/10/2020 15:53:20             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:53:20              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:53:21              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:53:21              dut.10.240.183.67: flow list 0
20/10/2020 15:53:21              dut.10.240.183.67: 
20/10/2020 15:53:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:22              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:22             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:53:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:53:22             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3dst passed
20/10/2020 15:53:22              dut.10.240.183.67: flow flush 0
20/10/2020 15:53:22              dut.10.240.183.67: 
20/10/2020 15:53:22             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3src================
20/10/2020 15:53:22             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:53:22              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:53:22              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:53:22              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:53:22              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:53:22              dut.10.240.183.67: flow list 0
20/10/2020 15:53:22              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:53:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:24              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb4f1e8d4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:24             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:53:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xb4f1e8d4', '0x4')]
20/10/2020 15:53:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:25              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb4f1e8d4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:25             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:53:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xb4f1e8d4', '0x4')]
20/10/2020 15:53:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:26              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x57a88904 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:53:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x57a88904', '0x4')]
20/10/2020 15:53:26             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:53:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:53:27              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:53:27              dut.10.240.183.67: flow list 0
20/10/2020 15:53:27              dut.10.240.183.67: 
20/10/2020 15:53:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:28              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:28             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:53:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:53:28             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3src passed
20/10/2020 15:53:28              dut.10.240.183.67: flow flush 0
20/10/2020 15:53:28              dut.10.240.183.67: 
20/10/2020 15:53:28             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3dst_l4src================
20/10/2020 15:53:28             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:53:28              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:53:28              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:53:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:53:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:53:28              dut.10.240.183.67: flow list 0
20/10/2020 15:53:28              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:53:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:29              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc04ac0a3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:29             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:53:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xc04ac0a3', '0x3')]
20/10/2020 15:53:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:31              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x2313a173 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:53:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x2313a173', '0x3')]
20/10/2020 15:53:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:32              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x9f239ecb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:53:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f239ecb', '0xb')]
20/10/2020 15:53:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:33              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc04ac0a3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:33             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:53:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xc04ac0a3', '0x3')]
20/10/2020 15:53:33             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:53:33              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:53:34              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:53:34              dut.10.240.183.67: flow list 0
20/10/2020 15:53:34              dut.10.240.183.67: 
20/10/2020 15:53:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:35              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:35             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:53:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:53:35             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3dst_l4src passed
20/10/2020 15:53:35              dut.10.240.183.67: flow flush 0
20/10/2020 15:53:35              dut.10.240.183.67: 
20/10/2020 15:53:35             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3dst_l4dst================
20/10/2020 15:53:35             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:53:35              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:53:35              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:53:35              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:53:35              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:53:35              dut.10.240.183.67: flow list 0
20/10/2020 15:53:35              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:53:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:37              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x10cdb5d3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:37             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:53:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x10cdb5d3', '0x3')]
20/10/2020 15:53:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:38              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xf394d403 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:53:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xf394d403', '0x3')]
20/10/2020 15:53:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:39              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x9f239ecb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:53:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f239ecb', '0xb')]
20/10/2020 15:53:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:40              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x10cdb5d3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:53:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x10cdb5d3', '0x3')]
20/10/2020 15:53:40             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:53:40              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:53:41              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:53:41              dut.10.240.183.67: flow list 0
20/10/2020 15:53:41              dut.10.240.183.67: 
20/10/2020 15:53:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:42              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:42             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:53:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:53:42             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3dst_l4dst passed
20/10/2020 15:53:42              dut.10.240.183.67: flow flush 0
20/10/2020 15:53:42              dut.10.240.183.67: 
20/10/2020 15:53:42             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3src_l4src================
20/10/2020 15:53:42             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:53:42              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:53:42              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:53:42              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:53:42              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:53:42              dut.10.240.183.67: flow list 0
20/10/2020 15:53:42              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:53:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:44              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x359bf867 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:44             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:53:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x359bf867', '0x7')]
20/10/2020 15:53:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:45              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd6c299b7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:53:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xd6c299b7', '0x7')]
20/10/2020 15:53:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:46              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x6af2a60f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:53:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x6af2a60f', '0xf')]
20/10/2020 15:53:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:47              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x359bf867 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:53:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x359bf867', '0x7')]
20/10/2020 15:53:47             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:53:47              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:53:48              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:53:48              dut.10.240.183.67: flow list 0
20/10/2020 15:53:48              dut.10.240.183.67: 
20/10/2020 15:53:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:49              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:49             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:53:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:53:49             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3src_l4src passed
20/10/2020 15:53:49              dut.10.240.183.67: flow flush 0
20/10/2020 15:53:49              dut.10.240.183.67: 
20/10/2020 15:53:49             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3src_l4dst================
20/10/2020 15:53:49             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:53:49              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:53:49              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:53:49              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:53:49              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:53:49              dut.10.240.183.67: flow list 0
20/10/2020 15:53:49              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:53:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:51              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xe51c8d17 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:51             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:53:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xe51c8d17', '0x7')]
20/10/2020 15:53:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:52              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x645ecc7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:52             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:53:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x645ecc7', '0x7')]
20/10/2020 15:53:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:53              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x6af2a60f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:53:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x6af2a60f', '0xf')]
20/10/2020 15:53:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:54              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xe51c8d17 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:53:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xe51c8d17', '0x7')]
20/10/2020 15:53:54             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:53:54              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:53:55              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:53:55              dut.10.240.183.67: flow list 0
20/10/2020 15:53:55              dut.10.240.183.67: 
20/10/2020 15:53:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:56              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:56             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:53:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:53:56             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3src_l4dst passed
20/10/2020 15:53:56              dut.10.240.183.67: flow flush 0
20/10/2020 15:53:56              dut.10.240.183.67: 
20/10/2020 15:53:56             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_tcp_l4src================
20/10/2020 15:53:56             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:53:56              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:53:56              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:53:56              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:53:56              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:53:56              dut.10.240.183.67: flow list 0
20/10/2020 15:53:57              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:53:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:58              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x23b9a4f7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:53:58             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:53:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x23b9a4f7', '0x7')]
20/10/2020 15:53:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:53:59              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x1541f142 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:53:59             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:53:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x1541f142', '0x2')]
20/10/2020 15:53:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:00              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x23b9a4f7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:00             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:54:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x23b9a4f7', '0x7')]
20/10/2020 15:54:00             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:54:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:54:01              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:54:01              dut.10.240.183.67: flow list 0
20/10/2020 15:54:01              dut.10.240.183.67: 
20/10/2020 15:54:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:02              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:02             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:54:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:54:02             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_tcp_l4src passed
20/10/2020 15:54:02              dut.10.240.183.67: flow flush 0
20/10/2020 15:54:02              dut.10.240.183.67: 
20/10/2020 15:54:02             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_tcp_l4dst================
20/10/2020 15:54:02             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:54:02              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:54:02              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:54:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:54:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:54:02              dut.10.240.183.67: flow list 0
20/10/2020 15:54:02              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:54:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:04              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x465afd96 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:04             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:54:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x465afd96', '0x6')]
20/10/2020 15:54:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:05              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x70a2a823 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:05             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x70a2a823', '0x3')]
20/10/2020 15:54:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:06              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x465afd96 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:54:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x465afd96', '0x6')]
20/10/2020 15:54:06             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:54:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:54:07              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:54:07              dut.10.240.183.67: flow list 0
20/10/2020 15:54:07              dut.10.240.183.67: 
20/10/2020 15:54:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:08              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:08             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:54:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:54:08             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_tcp_l4dst passed
20/10/2020 15:54:08              dut.10.240.183.67: flow flush 0
20/10/2020 15:54:08              dut.10.240.183.67: 
20/10/2020 15:54:08             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_tcp_all================
20/10/2020 15:54:08             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:54:08              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:54:08              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:54:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:54:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:54:08              dut.10.240.183.67: flow list 0
20/10/2020 15:54:08              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:54:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:09              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x11f6a597 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:09             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:54:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x11f6a597', '0x7')]
20/10/2020 15:54:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:11              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xca023cc5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xca023cc5', '0x5')]
20/10/2020 15:54:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:12              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x88a49ead - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:12             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x88a49ead', '0xd')]
20/10/2020 15:54:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:13              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x9683d555 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x9683d555', '0x5')]
20/10/2020 15:54:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:14              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xf2afc447 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xf2afc447', '0x7')]
20/10/2020 15:54:14             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:54:14              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:54:15              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:54:15              dut.10.240.183.67: flow list 0
20/10/2020 15:54:15              dut.10.240.183.67: 
20/10/2020 15:54:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:16              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:16             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:54:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:54:16             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_tcp_all passed
20/10/2020 15:54:16              dut.10.240.183.67: flow flush 0
20/10/2020 15:54:16              dut.10.240.183.67: 
20/10/2020 15:54:16             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3dst================
20/10/2020 15:54:16             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:54:16              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:54:16              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:54:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:54:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:54:16              dut.10.240.183.67: flow list 0
20/10/2020 15:54:16              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:54:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:18              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4120d010 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:18             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:54:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x4120d010', '0x0')]
20/10/2020 15:54:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:19              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xa279b1c0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:19             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xa279b1c0', '0x0')]
20/10/2020 15:54:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:20              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4120d010 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:20             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:54:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x4120d010', '0x0')]
20/10/2020 15:54:20             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:54:20              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:54:21              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:54:21              dut.10.240.183.67: flow list 0
20/10/2020 15:54:21              dut.10.240.183.67: 
20/10/2020 15:54:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:22              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:22             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:54:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:54:22             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3dst passed
20/10/2020 15:54:22              dut.10.240.183.67: flow flush 0
20/10/2020 15:54:22              dut.10.240.183.67: 
20/10/2020 15:54:22             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3src================
20/10/2020 15:54:22             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:54:22              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:54:22              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:54:22              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:54:22              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:54:22              dut.10.240.183.67: flow list 0
20/10/2020 15:54:22              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:54:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:24              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb4f1e8d4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:24             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:54:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xb4f1e8d4', '0x4')]
20/10/2020 15:54:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:25              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb4f1e8d4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:25             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:54:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xb4f1e8d4', '0x4')]
20/10/2020 15:54:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:26              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x57a88904 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x57a88904', '0x4')]
20/10/2020 15:54:26             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:54:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:54:27              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:54:27              dut.10.240.183.67: flow list 0
20/10/2020 15:54:27              dut.10.240.183.67: 
20/10/2020 15:54:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:28              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:28             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:54:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:54:28             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3src passed
20/10/2020 15:54:28              dut.10.240.183.67: flow flush 0
20/10/2020 15:54:28              dut.10.240.183.67: 
20/10/2020 15:54:28             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3dst_l4src================
20/10/2020 15:54:28             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:54:28              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:54:28              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:54:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:54:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:54:28              dut.10.240.183.67: flow list 0
20/10/2020 15:54:28              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:54:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:29              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc04ac0a3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:29             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:54:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xc04ac0a3', '0x3')]
20/10/2020 15:54:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:31              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x2313a173 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x2313a173', '0x3')]
20/10/2020 15:54:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:32              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x9f239ecb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f239ecb', '0xb')]
20/10/2020 15:54:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:33              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc04ac0a3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:33             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:54:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xc04ac0a3', '0x3')]
20/10/2020 15:54:33             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:54:33              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:54:34              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:54:34              dut.10.240.183.67: flow list 0
20/10/2020 15:54:34              dut.10.240.183.67: 
20/10/2020 15:54:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:35              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:35             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:54:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:54:35             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3dst_l4src passed
20/10/2020 15:54:35              dut.10.240.183.67: flow flush 0
20/10/2020 15:54:35              dut.10.240.183.67: 
20/10/2020 15:54:35             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3dst_l4dst================
20/10/2020 15:54:35             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:54:35              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:54:35              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:54:35              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:54:35              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:54:35              dut.10.240.183.67: flow list 0
20/10/2020 15:54:35              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:54:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:36              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x10cdb5d3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:36             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:54:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x10cdb5d3', '0x3')]
20/10/2020 15:54:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:38              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xf394d403 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xf394d403', '0x3')]
20/10/2020 15:54:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:39              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x9f239ecb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f239ecb', '0xb')]
20/10/2020 15:54:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:40              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x10cdb5d3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:54:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x10cdb5d3', '0x3')]
20/10/2020 15:54:40             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:54:40              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:54:41              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:54:41              dut.10.240.183.67: flow list 0
20/10/2020 15:54:41              dut.10.240.183.67: 
20/10/2020 15:54:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:42              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:42             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:54:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:54:42             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3dst_l4dst passed
20/10/2020 15:54:42              dut.10.240.183.67: flow flush 0
20/10/2020 15:54:42              dut.10.240.183.67: 
20/10/2020 15:54:42             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3src_l4src================
20/10/2020 15:54:42             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:54:42              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:54:42              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:54:42              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:54:42              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:54:42              dut.10.240.183.67: flow list 0
20/10/2020 15:54:42              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:54:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:43              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x359bf867 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:43             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:54:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x359bf867', '0x7')]
20/10/2020 15:54:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:45              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd6c299b7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xd6c299b7', '0x7')]
20/10/2020 15:54:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:46              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x6af2a60f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x6af2a60f', '0xf')]
20/10/2020 15:54:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:47              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x359bf867 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:54:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x359bf867', '0x7')]
20/10/2020 15:54:47             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:54:47              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:54:48              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:54:48              dut.10.240.183.67: flow list 0
20/10/2020 15:54:48              dut.10.240.183.67: 
20/10/2020 15:54:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:49              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:49             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:54:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:54:49             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3src_l4src passed
20/10/2020 15:54:49              dut.10.240.183.67: flow flush 0
20/10/2020 15:54:49              dut.10.240.183.67: 
20/10/2020 15:54:49             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3src_l4dst================
20/10/2020 15:54:49             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:54:49              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:54:49              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:54:49              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:54:49              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:54:49              dut.10.240.183.67: flow list 0
20/10/2020 15:54:49              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:54:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:51              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xe51c8d17 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:51             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:54:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xe51c8d17', '0x7')]
20/10/2020 15:54:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:52              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x645ecc7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:52             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x645ecc7', '0x7')]
20/10/2020 15:54:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:53              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x6af2a60f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x6af2a60f', '0xf')]
20/10/2020 15:54:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:54              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xe51c8d17 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:54:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xe51c8d17', '0x7')]
20/10/2020 15:54:54             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:54:54              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:54:55              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:54:55              dut.10.240.183.67: flow list 0
20/10/2020 15:54:55              dut.10.240.183.67: 
20/10/2020 15:54:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:56              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:56             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:54:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:54:56             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3src_l4dst passed
20/10/2020 15:54:56              dut.10.240.183.67: flow flush 0
20/10/2020 15:54:56              dut.10.240.183.67: 
20/10/2020 15:54:56             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_tcp_l4src================
20/10/2020 15:54:56             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:54:56              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:54:56              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:54:56              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:54:56              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:54:56              dut.10.240.183.67: flow list 0
20/10/2020 15:54:56              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:54:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:58              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x23b9a4f7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:54:58             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:54:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x23b9a4f7', '0x7')]
20/10/2020 15:54:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:54:59              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x1541f142 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:54:59             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:54:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x1541f142', '0x2')]
20/10/2020 15:54:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:00              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x23b9a4f7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:00             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:55:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x23b9a4f7', '0x7')]
20/10/2020 15:55:00             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:55:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:55:01              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:55:01              dut.10.240.183.67: flow list 0
20/10/2020 15:55:01              dut.10.240.183.67: 
20/10/2020 15:55:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:02              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:02             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:55:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:55:02             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_tcp_l4src passed
20/10/2020 15:55:02              dut.10.240.183.67: flow flush 0
20/10/2020 15:55:02              dut.10.240.183.67: 
20/10/2020 15:55:02             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_tcp_l4dst================
20/10/2020 15:55:02             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:55:02              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:55:02              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:55:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:55:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:55:02              dut.10.240.183.67: flow list 0
20/10/2020 15:55:02              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:55:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:03              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x465afd96 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:03             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:55:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x465afd96', '0x6')]
20/10/2020 15:55:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:05              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x70a2a823 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:05             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:55:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x70a2a823', '0x3')]
20/10/2020 15:55:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:06              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x465afd96 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:55:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x465afd96', '0x6')]
20/10/2020 15:55:06             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:55:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:55:07              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:55:07              dut.10.240.183.67: flow list 0
20/10/2020 15:55:07              dut.10.240.183.67: 
20/10/2020 15:55:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:08              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:08             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:55:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:55:08             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_tcp_l4dst passed
20/10/2020 15:55:08              dut.10.240.183.67: flow flush 0
20/10/2020 15:55:08              dut.10.240.183.67: 
20/10/2020 15:55:08             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_tcp_all================
20/10/2020 15:55:08             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:55:08              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:55:08              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:55:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:55:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:55:08              dut.10.240.183.67: flow list 0
20/10/2020 15:55:08              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:55:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:09              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x11f6a597 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:09             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:55:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x11f6a597', '0x7')]
20/10/2020 15:55:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:10              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xca023cc5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:55:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xca023cc5', '0x5')]
20/10/2020 15:55:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:12              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x88a49ead - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:12             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:55:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x88a49ead', '0xd')]
20/10/2020 15:55:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:13              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x9683d555 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:55:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x9683d555', '0x5')]
20/10/2020 15:55:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:14              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xf2afc447 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:55:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xf2afc447', '0x7')]
20/10/2020 15:55:14             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:55:14              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:55:15              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:55:15              dut.10.240.183.67: flow list 0
20/10/2020 15:55:15              dut.10.240.183.67: 
20/10/2020 15:55:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:16              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb46405cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:16             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:55:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xb46405cd', '0xd')]
20/10/2020 15:55:16             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_tcp_all passed
20/10/2020 15:55:16              dut.10.240.183.67: flow flush 0
20/10/2020 15:55:16              dut.10.240.183.67: 
20/10/2020 15:55:16             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_tcp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_tcp_l4src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_tcp_l4dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_tcp_all': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_tcp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_tcp_l4src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_tcp_l4dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_tcp_all': 'passed'}
20/10/2020 15:55:16             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:55:16             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_tcp Result PASSED:
20/10/2020 15:55:16              dut.10.240.183.67: flow flush 0
20/10/2020 15:55:17              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:55:17              dut.10.240.183.67: clear port stats all
20/10/2020 15:55:19              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:55:19              dut.10.240.183.67: stop
20/10/2020 15:55:19              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:55:19             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_tcp_symmetric Begin
20/10/2020 15:55:19              dut.10.240.183.67: 
20/10/2020 15:55:19                         tester: 
20/10/2020 15:55:19              dut.10.240.183.67: start
20/10/2020 15:55:19              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:55:19              dut.10.240.183.67: quit
20/10/2020 15:55:20              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:55:21              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:55:22              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:55:32              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:55:32              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:55:32              dut.10.240.183.67: set verbose 1
20/10/2020 15:55:32              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:55:32              dut.10.240.183.67: show port info all
20/10/2020 15:55:32              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:55:32              dut.10.240.183.67: start
20/10/2020 15:55:32              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:55:32             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_tcp_symmetric================
20/10/2020 15:55:32             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:55:32              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:55:32              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:55:32              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:55:32              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:55:32              dut.10.240.183.67: flow list 0
20/10/2020 15:55:32              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:55:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:33              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x55aa81ce - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:33             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:55:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x55aa81ce', '0xe')]
20/10/2020 15:55:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:34              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x55aa81ce - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:55:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x55aa81ce', '0xe')]
20/10/2020 15:55:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:35              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x55aa81ce - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:35             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:55:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x55aa81ce', '0xe')]
20/10/2020 15:55:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:37              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x55aa81ce - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:55:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x55aa81ce', '0xe')]
20/10/2020 15:55:37             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:55:37              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:55:38              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:55:38              dut.10.240.183.67: flow list 0
20/10/2020 15:55:38              dut.10.240.183.67: 
20/10/2020 15:55:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:39              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:39             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:55:39             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3')]
20/10/2020 15:55:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:40              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:40             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:55:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3')]
20/10/2020 15:55:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:41              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:41             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:55:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3')]
20/10/2020 15:55:41             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_tcp_symmetric passed
20/10/2020 15:55:41              dut.10.240.183.67: flow flush 0
20/10/2020 15:55:41              dut.10.240.183.67: 
20/10/2020 15:55:41             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_tcp_symmetric================
20/10/2020 15:55:41             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:55:41              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:55:41              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:55:41              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:55:41              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:55:41              dut.10.240.183.67: flow list 0
20/10/2020 15:55:41              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:55:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:42              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x55aa81ce - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:42             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:55:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x55aa81ce', '0xe')]
20/10/2020 15:55:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:44              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x55aa81ce - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:55:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x55aa81ce', '0xe')]
20/10/2020 15:55:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:45              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x55aa81ce - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:45             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:55:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x55aa81ce', '0xe')]
20/10/2020 15:55:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:46              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x55aa81ce - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:46             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:55:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x55aa81ce', '0xe')]
20/10/2020 15:55:46             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:55:46              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:55:47              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:55:47              dut.10.240.183.67: flow list 0
20/10/2020 15:55:47              dut.10.240.183.67: 
20/10/2020 15:55:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:48              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:48             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:55:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3')]
20/10/2020 15:55:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:49              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:49             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:55:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3')]
20/10/2020 15:55:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:50              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:55:50             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:55:50             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3')]
20/10/2020 15:55:50             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_tcp_symmetric passed
20/10/2020 15:55:50              dut.10.240.183.67: flow flush 0
20/10/2020 15:55:50              dut.10.240.183.67: 
20/10/2020 15:55:50             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_dl_ipv4_tcp_symmetric': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_tcp_symmetric': 'passed'}
20/10/2020 15:55:50             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:55:50             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_tcp_symmetric Result PASSED:
20/10/2020 15:55:50              dut.10.240.183.67: flow flush 0
20/10/2020 15:55:52              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:55:52              dut.10.240.183.67: clear port stats all
20/10/2020 15:55:53              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:55:53              dut.10.240.183.67: stop
20/10/2020 15:55:53              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:55:53             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_tcp_without_ul_dl Begin
20/10/2020 15:55:53              dut.10.240.183.67: 
20/10/2020 15:55:53                         tester: 
20/10/2020 15:55:53              dut.10.240.183.67: start
20/10/2020 15:55:53              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:55:53             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3src================
20/10/2020 15:55:53             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:55:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:55:53              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:55:53              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 15:55:53              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:55:53              dut.10.240.183.67: flow list 0
20/10/2020 15:55:53              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:55:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:54              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc15d4189 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:55:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xc15d4189', '0x9')]
20/10/2020 15:55:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:56              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc15d4189 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:56             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:55:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xc15d4189', '0x9')]
20/10/2020 15:55:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:57              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x3a12e74a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:55:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x3a12e74a', '0xa')]
20/10/2020 15:55:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:55:58              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc15d4189 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:55:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:55:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xc15d4189', '0x9')]
20/10/2020 15:55:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:55:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:55:59              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:55:59              dut.10.240.183.67: flow list 0
20/10/2020 15:55:59              dut.10.240.183.67: 
20/10/2020 15:55:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:00              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:00             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:56:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3'), ('0xd8545cd3', '0x3')]
20/10/2020 15:56:00             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3src passed
20/10/2020 15:56:00              dut.10.240.183.67: flow flush 0
20/10/2020 15:56:00              dut.10.240.183.67: 
20/10/2020 15:56:00             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst================
20/10/2020 15:56:00             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:56:00              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:56:00              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:56:00              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:56:00              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:56:00              dut.10.240.183.67: flow list 0
20/10/2020 15:56:00              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:56:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:01              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x2928e300 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:01             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:56:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x2928e300', '0x0')]
20/10/2020 15:56:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:03              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x2928e300 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x2928e300', '0x0')]
20/10/2020 15:56:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:04              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd26745c3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xd26745c3', '0x3')]
20/10/2020 15:56:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:05              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x2928e300 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x2928e300', '0x0')]
20/10/2020 15:56:05             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:56:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:56:06              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:56:06              dut.10.240.183.67: flow list 0
20/10/2020 15:56:06              dut.10.240.183.67: 
20/10/2020 15:56:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:07              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:07             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:56:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3'), ('0xd8545cd3', '0x3')]
20/10/2020 15:56:07             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst passed
20/10/2020 15:56:07              dut.10.240.183.67: flow flush 0
20/10/2020 15:56:07              dut.10.240.183.67: 
20/10/2020 15:56:07             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3src_l4dst================
20/10/2020 15:56:07             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:56:07              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:56:07              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:56:07              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:56:07              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:56:07              dut.10.240.183.67: flow list 0
20/10/2020 15:56:07              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:56:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:09              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xbf27dc4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:09             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:56:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xbf27dc4d', '0xd')]
20/10/2020 15:56:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:10              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x96c27bb6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x96c27bb6', '0x6')]
20/10/2020 15:56:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:11              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x44687a8e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x44687a8e', '0xe')]
20/10/2020 15:56:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:12              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xbf27dc4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:56:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xbf27dc4d', '0xd')]
20/10/2020 15:56:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:13              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xbf27dc4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:56:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xbf27dc4d', '0xd')]
20/10/2020 15:56:13             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:56:13              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:56:14              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:56:14              dut.10.240.183.67: flow list 0
20/10/2020 15:56:14              dut.10.240.183.67: 
20/10/2020 15:56:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:15              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:15             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:56:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3'), ('0xd8545cd3', '0x3')]
20/10/2020 15:56:15             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3src_l4dst passed
20/10/2020 15:56:15              dut.10.240.183.67: flow flush 0
20/10/2020 15:56:15              dut.10.240.183.67: 
20/10/2020 15:56:15             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst_l4src================
20/10/2020 15:56:15             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:56:15              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:56:15              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:56:15              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:56:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:56:16              dut.10.240.183.67: flow list 0
20/10/2020 15:56:16              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:56:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:17              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x945ce361 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:17             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:56:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x945ce361', '0x1')]
20/10/2020 15:56:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:18              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x1f3097ed - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x1f3097ed', '0xd')]
20/10/2020 15:56:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:19              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x6f1345a2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:19             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x6f1345a2', '0x2')]
20/10/2020 15:56:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:20              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x945ce361 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:20             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x945ce361', '0x1')]
20/10/2020 15:56:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:21              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x945ce361 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x945ce361', '0x1')]
20/10/2020 15:56:21             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:56:21              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:56:22              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:56:22              dut.10.240.183.67: flow list 0
20/10/2020 15:56:22              dut.10.240.183.67: 
20/10/2020 15:56:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:23              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:23             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:56:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3'), ('0xd8545cd3', '0x3')]
20/10/2020 15:56:23             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst_l4src passed
20/10/2020 15:56:23              dut.10.240.183.67: flow flush 0
20/10/2020 15:56:24              dut.10.240.183.67: 
20/10/2020 15:56:24             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3src_l4src================
20/10/2020 15:56:24             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:56:24              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:56:24              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:56:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:56:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:56:24              dut.10.240.183.67: flow list 0
20/10/2020 15:56:24              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:56:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:25              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x7c2941e8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:25             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:56:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x7c2941e8', '0x8')]
20/10/2020 15:56:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:26              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xf7453564 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xf7453564', '0x4')]
20/10/2020 15:56:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:27              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x8766e72b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x8766e72b', '0xb')]
20/10/2020 15:56:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:28              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x7c2941e8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:28             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x7c2941e8', '0x8')]
20/10/2020 15:56:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:29              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x7c2941e8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:29             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x7c2941e8', '0x8')]
20/10/2020 15:56:29             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:56:29              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:56:30              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:56:30              dut.10.240.183.67: flow list 0
20/10/2020 15:56:30              dut.10.240.183.67: 
20/10/2020 15:56:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:32              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:32             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:56:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3'), ('0xd8545cd3', '0x3')]
20/10/2020 15:56:32             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3src_l4src passed
20/10/2020 15:56:32              dut.10.240.183.67: flow flush 0
20/10/2020 15:56:32              dut.10.240.183.67: 
20/10/2020 15:56:32             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst_l4dst================
20/10/2020 15:56:32             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:56:32              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:56:32              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:56:32              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:56:32              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:56:32              dut.10.240.183.67: flow list 0
20/10/2020 15:56:32              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:56:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:33              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x57527ec4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:33             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:56:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x57527ec4', '0x4')]
20/10/2020 15:56:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:34              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x7eb7d93f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x7eb7d93f', '0xf')]
20/10/2020 15:56:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:35              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xac1dd807 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:35             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xac1dd807', '0x7')]
20/10/2020 15:56:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:36              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x57527ec4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:56:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x57527ec4', '0x4')]
20/10/2020 15:56:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:37              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x57527ec4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:56:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x57527ec4', '0x4')]
20/10/2020 15:56:37             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:56:37              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:56:39              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:56:39              dut.10.240.183.67: flow list 0
20/10/2020 15:56:39              dut.10.240.183.67: 
20/10/2020 15:56:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:40              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:40             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:56:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3'), ('0xd8545cd3', '0x3')]
20/10/2020 15:56:40             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst_l4dst passed
20/10/2020 15:56:40              dut.10.240.183.67: flow flush 0
20/10/2020 15:56:40              dut.10.240.183.67: 
20/10/2020 15:56:40             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l4src_only================
20/10/2020 15:56:40             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:56:40              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:56:40              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:56:40              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 15:56:40              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:56:40              dut.10.240.183.67: flow list 0
20/10/2020 15:56:40              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:56:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:41              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x427dcdc3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:56:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x427dcdc3', '0x3')]
20/10/2020 15:56:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:42              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x6eded77e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x6eded77e', '0xe')]
20/10/2020 15:56:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:43              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x427dcdc3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:56:43             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x427dcdc3', '0x3')]
20/10/2020 15:56:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:44              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x427dcdc3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:56:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x427dcdc3', '0x3')]
20/10/2020 15:56:44             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:56:44              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:56:46              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:56:46              dut.10.240.183.67: flow list 0
20/10/2020 15:56:46              dut.10.240.183.67: 
20/10/2020 15:56:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:47              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:47             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:56:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3'), ('0xd8545cd3', '0x3')]
20/10/2020 15:56:47             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l4src_only passed
20/10/2020 15:56:47              dut.10.240.183.67: flow flush 0
20/10/2020 15:56:47              dut.10.240.183.67: 
20/10/2020 15:56:47             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l4dst_only================
20/10/2020 15:56:47             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:56:47              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:56:47              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:56:47              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:56:47              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:56:47              dut.10.240.183.67: flow list 0
20/10/2020 15:56:47              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:56:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:48              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x51868265 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:56:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x51868265', '0x5')]
20/10/2020 15:56:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:49              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x672370ad - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x672370ad', '0xd')]
20/10/2020 15:56:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:50              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x51868265 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:56:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x51868265', '0x5')]
20/10/2020 15:56:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:52              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x51868265 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 15:56:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:56:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x51868265', '0x5')]
20/10/2020 15:56:52             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:56:52              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:56:53              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:56:53              dut.10.240.183.67: flow list 0
20/10/2020 15:56:53              dut.10.240.183.67: 
20/10/2020 15:56:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:54              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:54             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:56:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3'), ('0xd8545cd3', '0x3')]
20/10/2020 15:56:54             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l4dst_only passed
20/10/2020 15:56:54              dut.10.240.183.67: flow flush 0
20/10/2020 15:56:54              dut.10.240.183.67: 
20/10/2020 15:56:54             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp================
20/10/2020 15:56:54             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:56:54              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:56:54              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:56:54              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:56:54              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:56:54              dut.10.240.183.67: flow list 0
20/10/2020 15:56:54              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:56:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:55              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xe087249e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:55             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:56:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xe087249e', '0xe')]
20/10/2020 15:56:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:56              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x488f3dd1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x488f3dd1', '0x1')]
20/10/2020 15:56:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:57              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xf9c84ef8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:56:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9c84ef8', '0x8')]
20/10/2020 15:56:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:56:59              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xee1a81a6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:56:59             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:56:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xee1a81a6', '0x6')]
20/10/2020 15:56:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:00              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x1bc8825d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:57:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:57:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x1bc8825d', '0xd')]
20/10/2020 15:57:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:01              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xe087249e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:57:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xe087249e', '0xe')]
20/10/2020 15:57:01             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:57:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:57:02              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:57:02              dut.10.240.183.67: flow list 0
20/10/2020 15:57:02              dut.10.240.183.67: 
20/10/2020 15:57:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:03              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd8545cd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:57:03             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:57:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xd8545cd3', '0x3'), ('0xd8545cd3', '0x3')]
20/10/2020 15:57:03             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp passed
20/10/2020 15:57:03              dut.10.240.183.67: flow flush 0
20/10/2020 15:57:03              dut.10.240.183.67: 
20/10/2020 15:57:03             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l4src_only': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp_l4dst_only': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_tcp': 'passed'}
20/10/2020 15:57:03             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:57:03             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_tcp_without_ul_dl Result PASSED:
20/10/2020 15:57:03              dut.10.240.183.67: flow flush 0
20/10/2020 15:57:04              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:57:04              dut.10.240.183.67: clear port stats all
20/10/2020 15:57:06              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:57:06              dut.10.240.183.67: stop
20/10/2020 15:57:06              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:57:06             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric Begin
20/10/2020 15:57:06              dut.10.240.183.67: 
20/10/2020 15:57:06                         tester: 
20/10/2020 15:57:06              dut.10.240.183.67: start
20/10/2020 15:57:06              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:57:06              dut.10.240.183.67: quit
20/10/2020 15:57:07              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:57:07              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:57:09              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:57:19              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:57:19              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:57:19              dut.10.240.183.67: set verbose 1
20/10/2020 15:57:19              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:57:19              dut.10.240.183.67: show port info all
20/10/2020 15:57:19              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:57:19              dut.10.240.183.67: start
20/10/2020 15:57:19              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:57:19             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric================
20/10/2020 15:57:19             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:57:19              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:57:19              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:57:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:57:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:57:19              dut.10.240.183.67: flow list 0
20/10/2020 15:57:19              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:57:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:20              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x822a07c0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:20             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-dl'}

20/10/2020 15:57:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x822a07c0', '0x0')]
20/10/2020 15:57:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:21              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x822a07c0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:57:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x822a07c0', '0x0')]
20/10/2020 15:57:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:22              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x822a07c0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:22             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:57:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x822a07c0', '0x0')]
20/10/2020 15:57:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:24              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x822a07c0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:57:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x822a07c0', '0x0')]
20/10/2020 15:57:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:25              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x822a07c0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:25             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-ul'}

20/10/2020 15:57:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x822a07c0', '0x0')]
20/10/2020 15:57:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:26              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x822a07c0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:26             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:57:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x822a07c0', '0x0')]
20/10/2020 15:57:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:27              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x822a07c0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:27             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:57:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x822a07c0', '0x0')]
20/10/2020 15:57:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:28              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x822a07c0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:28             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:57:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x822a07c0', '0x0')]
20/10/2020 15:57:28             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:57:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:57:29              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:57:29              dut.10.240.183.67: flow list 0
20/10/2020 15:57:29              dut.10.240.183.67: 
20/10/2020 15:57:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:30              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:30             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:57:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:57:30             TestCVLIAVFRSSGTPU: action: udp-dl

20/10/2020 15:57:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:31              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:31             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:57:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:57:31             TestCVLIAVFRSSGTPU: action: udp-ul

20/10/2020 15:57:31             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric passed
20/10/2020 15:57:31              dut.10.240.183.67: flow flush 0
20/10/2020 15:57:31              dut.10.240.183.67: 
20/10/2020 15:57:31             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric': 'passed'}
20/10/2020 15:57:31             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:57:31             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_tcp_without_ul_dl_symmetric Result PASSED:
20/10/2020 15:57:31              dut.10.240.183.67: flow flush 0
20/10/2020 15:57:33              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:57:33              dut.10.240.183.67: clear port stats all
20/10/2020 15:57:34              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:57:34              dut.10.240.183.67: stop
20/10/2020 15:57:34              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 15:57:34             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_udp Begin
20/10/2020 15:57:34              dut.10.240.183.67: 
20/10/2020 15:57:34                         tester: 
20/10/2020 15:57:34              dut.10.240.183.67: start
20/10/2020 15:57:34              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:57:34             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_udp_l3dst================
20/10/2020 15:57:34             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:57:34              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:57:34              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:57:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:57:34              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:57:34              dut.10.240.183.67: flow list 0
20/10/2020 15:57:34              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:57:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:35              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x6740cb28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:57:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x6740cb28', '0x8')]
20/10/2020 15:57:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:37              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x47f13528 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:37             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:57:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x47f13528', '0x8')]
20/10/2020 15:57:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:38              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x6740cb28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:38             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:57:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x6740cb28', '0x8')]
20/10/2020 15:57:38             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:57:38              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:57:39              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:57:39              dut.10.240.183.67: flow list 0
20/10/2020 15:57:39              dut.10.240.183.67: 
20/10/2020 15:57:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:40              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:40             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:57:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:57:40             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_udp_l3dst passed
20/10/2020 15:57:40              dut.10.240.183.67: flow flush 0
20/10/2020 15:57:40              dut.10.240.183.67: 
20/10/2020 15:57:40             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_udp_l3src================
20/10/2020 15:57:40             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:57:40              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:57:40              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:57:40              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:57:40              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:57:40              dut.10.240.183.67: flow list 0
20/10/2020 15:57:40              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:57:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:41              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x8e41cb6f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:57:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x8e41cb6f', '0xf')]
20/10/2020 15:57:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:42              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x8e41cb6f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:42             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:57:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x8e41cb6f', '0xf')]
20/10/2020 15:57:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:44              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xaef0356f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:57:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xaef0356f', '0xf')]
20/10/2020 15:57:44             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:57:44              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:57:45              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:57:45              dut.10.240.183.67: flow list 0
20/10/2020 15:57:45              dut.10.240.183.67: 
20/10/2020 15:57:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:46              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:46             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:57:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:57:46             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_udp_l3src passed
20/10/2020 15:57:46              dut.10.240.183.67: flow flush 0
20/10/2020 15:57:46              dut.10.240.183.67: 
20/10/2020 15:57:46             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_udp_l3dst_l4src================
20/10/2020 15:57:46             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:57:46              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:57:46              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:57:46              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:57:46              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:57:46              dut.10.240.183.67: flow list 0
20/10/2020 15:57:46              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:57:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:47              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x764b8b2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:57:47             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:57:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x764b8b2', '0x2')]
20/10/2020 15:57:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:48              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x27d546b2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:57:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:57:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x27d546b2', '0x2')]
20/10/2020 15:57:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:50              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9739cb21 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:57:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x9739cb21', '0x1')]
20/10/2020 15:57:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:51              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x764b8b2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:57:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:57:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x764b8b2', '0x2')]
20/10/2020 15:57:51             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:57:51              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:57:52              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:57:52              dut.10.240.183.67: flow list 0
20/10/2020 15:57:52              dut.10.240.183.67: 
20/10/2020 15:57:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:53              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:53             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:57:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:57:53             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_udp_l3dst_l4src passed
20/10/2020 15:57:53              dut.10.240.183.67: flow flush 0
20/10/2020 15:57:53              dut.10.240.183.67: 
20/10/2020 15:57:53             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_udp_l3dst_l4dst================
20/10/2020 15:57:53             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:57:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:57:53              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:57:53              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:57:53              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:57:53              dut.10.240.183.67: flow list 0
20/10/2020 15:57:53              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:57:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:54              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x71e6e0e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:57:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x71e6e0e', '0xe')]
20/10/2020 15:57:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:55              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x27af900e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:57:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x27af900e', '0xe')]
20/10/2020 15:57:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:57              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9739cb21 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:57:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x9739cb21', '0x1')]
20/10/2020 15:57:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:57:58              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x71e6e0e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:57:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:57:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x71e6e0e', '0xe')]
20/10/2020 15:57:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:57:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:57:59              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:57:59              dut.10.240.183.67: flow list 0
20/10/2020 15:57:59              dut.10.240.183.67: 
20/10/2020 15:57:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:00              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:00             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:58:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:58:00             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_udp_l3dst_l4dst passed
20/10/2020 15:58:00              dut.10.240.183.67: flow flush 0
20/10/2020 15:58:00              dut.10.240.183.67: 
20/10/2020 15:58:00             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_udp_l3src_l4src================
20/10/2020 15:58:00             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:58:00              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:58:00              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:58:00              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:58:00              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:58:00              dut.10.240.183.67: flow list 0
20/10/2020 15:58:00              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:58:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:01              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xee65b8f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:01             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:58:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xee65b8f5', '0x5')]
20/10/2020 15:58:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:02              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xced446f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:02             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xced446f5', '0x5')]
20/10/2020 15:58:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:04              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x7e38cb66 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e38cb66', '0x6')]
20/10/2020 15:58:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:05              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xee65b8f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:58:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xee65b8f5', '0x5')]
20/10/2020 15:58:05             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:58:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:58:06              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:58:06              dut.10.240.183.67: flow list 0
20/10/2020 15:58:06              dut.10.240.183.67: 
20/10/2020 15:58:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:07              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:07             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:58:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:58:07             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_udp_l3src_l4src passed
20/10/2020 15:58:07              dut.10.240.183.67: flow flush 0
20/10/2020 15:58:07              dut.10.240.183.67: 
20/10/2020 15:58:07             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_udp_l3src_l4dst================
20/10/2020 15:58:07             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:58:07              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:58:07              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:58:07              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:58:07              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:58:07              dut.10.240.183.67: flow list 0
20/10/2020 15:58:07              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:58:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:08              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xee1f6e49 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:08             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:58:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xee1f6e49', '0x9')]
20/10/2020 15:58:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:09              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xceae9049 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xceae9049', '0x9')]
20/10/2020 15:58:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:11              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x7e38cb66 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e38cb66', '0x6')]
20/10/2020 15:58:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:12              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xee1f6e49 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:58:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xee1f6e49', '0x9')]
20/10/2020 15:58:12             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:58:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:58:13              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:58:13              dut.10.240.183.67: flow list 0
20/10/2020 15:58:13              dut.10.240.183.67: 
20/10/2020 15:58:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:14              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:14             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:58:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:58:14             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_udp_l3src_l4dst passed
20/10/2020 15:58:14              dut.10.240.183.67: flow flush 0
20/10/2020 15:58:14              dut.10.240.183.67: 
20/10/2020 15:58:14             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_udp_l4src================
20/10/2020 15:58:14             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:58:14              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:58:14              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:58:14              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:58:14              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:58:14              dut.10.240.183.67: flow list 0
20/10/2020 15:58:14              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:58:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:15              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xa0c852dd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:15             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:58:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xa0c852dd', '0xd')]
20/10/2020 15:58:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:17              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x408328cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x408328cd', '0xd')]
20/10/2020 15:58:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:18              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xa0c852dd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:58:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xa0c852dd', '0xd')]
20/10/2020 15:58:18             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:58:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:58:19              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:58:19              dut.10.240.183.67: flow list 0
20/10/2020 15:58:19              dut.10.240.183.67: 
20/10/2020 15:58:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:20              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:20             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:58:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:58:20             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_udp_l4src passed
20/10/2020 15:58:20              dut.10.240.183.67: flow flush 0
20/10/2020 15:58:20              dut.10.240.183.67: 
20/10/2020 15:58:20             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_udp_l4dst================
20/10/2020 15:58:20             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:58:20              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:58:20              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:58:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:58:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:58:20              dut.10.240.183.67: flow list 0
20/10/2020 15:58:20              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:58:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:21              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x16e8e323 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:21             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:58:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x16e8e323', '0x3')]
20/10/2020 15:58:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:22              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf6a39933 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xf6a39933', '0x3')]
20/10/2020 15:58:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:24              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x16e8e323 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:58:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x16e8e323', '0x3')]
20/10/2020 15:58:24             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:58:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:58:25              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:58:25              dut.10.240.183.67: flow list 0
20/10/2020 15:58:25              dut.10.240.183.67: 
20/10/2020 15:58:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:26              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:26             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:58:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:58:26             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_udp_l4dst passed
20/10/2020 15:58:26              dut.10.240.183.67: flow flush 0
20/10/2020 15:58:26              dut.10.240.183.67: 
20/10/2020 15:58:26             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_udp_all================
20/10/2020 15:58:26             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:58:26              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:58:26              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:58:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:58:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:58:26              dut.10.240.183.67: flow list 0
20/10/2020 15:58:26              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:58:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:27              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xbfa1e2b9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:27             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:58:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xbfa1e2b9', '0x9')]
20/10/2020 15:58:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:28              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xac3847fd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xac3847fd', '0xd')]
20/10/2020 15:58:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:29              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x1ae53ff9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x1ae53ff9', '0x9')]
20/10/2020 15:58:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:31              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc5775ef5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xc5775ef5', '0x5')]
20/10/2020 15:58:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:32              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9f101cb9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f101cb9', '0x9')]
20/10/2020 15:58:32             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:58:32              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:58:33              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:58:33              dut.10.240.183.67: flow list 0
20/10/2020 15:58:33              dut.10.240.183.67: 
20/10/2020 15:58:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:34              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:34             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:58:34             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:58:34             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_udp_all passed
20/10/2020 15:58:34              dut.10.240.183.67: flow flush 0
20/10/2020 15:58:34              dut.10.240.183.67: 
20/10/2020 15:58:34             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_udp_l3dst================
20/10/2020 15:58:34             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:58:34              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:58:34              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:58:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 15:58:34              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:58:34              dut.10.240.183.67: flow list 0
20/10/2020 15:58:34              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:58:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:35              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x6740cb28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:58:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x6740cb28', '0x8')]
20/10/2020 15:58:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:36              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x47f13528 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x47f13528', '0x8')]
20/10/2020 15:58:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:38              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x6740cb28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:38             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:58:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x6740cb28', '0x8')]
20/10/2020 15:58:38             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:58:38              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:58:39              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:58:39              dut.10.240.183.67: flow list 0
20/10/2020 15:58:39              dut.10.240.183.67: 
20/10/2020 15:58:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:40              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:40             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:58:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:58:40             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_udp_l3dst passed
20/10/2020 15:58:40              dut.10.240.183.67: flow flush 0
20/10/2020 15:58:40              dut.10.240.183.67: 
20/10/2020 15:58:40             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_udp_l3src================
20/10/2020 15:58:40             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:58:40              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:58:40              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:58:40              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 15:58:40              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:58:40              dut.10.240.183.67: flow list 0
20/10/2020 15:58:40              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:58:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:41              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x8e41cb6f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:58:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x8e41cb6f', '0xf')]
20/10/2020 15:58:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:42              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x8e41cb6f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:42             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:58:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x8e41cb6f', '0xf')]
20/10/2020 15:58:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:44              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xaef0356f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xaef0356f', '0xf')]
20/10/2020 15:58:44             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:58:44              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:58:45              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:58:45              dut.10.240.183.67: flow list 0
20/10/2020 15:58:45              dut.10.240.183.67: 
20/10/2020 15:58:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:46              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:46             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:58:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:58:46             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_udp_l3src passed
20/10/2020 15:58:46              dut.10.240.183.67: flow flush 0
20/10/2020 15:58:46              dut.10.240.183.67: 
20/10/2020 15:58:46             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_udp_l3dst_l4src================
20/10/2020 15:58:46             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:58:46              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:58:46              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:58:46              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:58:46              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:58:46              dut.10.240.183.67: flow list 0
20/10/2020 15:58:46              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:58:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:47              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x764b8b2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:47             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:58:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x764b8b2', '0x2')]
20/10/2020 15:58:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:48              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x27d546b2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x27d546b2', '0x2')]
20/10/2020 15:58:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:49              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9739cb21 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x9739cb21', '0x1')]
20/10/2020 15:58:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:51              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x764b8b2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:58:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:58:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x764b8b2', '0x2')]
20/10/2020 15:58:51             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:58:51              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:58:52              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:58:52              dut.10.240.183.67: flow list 0
20/10/2020 15:58:52              dut.10.240.183.67: 
20/10/2020 15:58:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:53              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:53             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:58:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:58:53             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_udp_l3dst_l4src passed
20/10/2020 15:58:53              dut.10.240.183.67: flow flush 0
20/10/2020 15:58:53              dut.10.240.183.67: 
20/10/2020 15:58:53             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_udp_l3dst_l4dst================
20/10/2020 15:58:53             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:58:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:58:53              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:58:53              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:58:53              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:58:53              dut.10.240.183.67: flow list 0
20/10/2020 15:58:53              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:58:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:54              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x71e6e0e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:58:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x71e6e0e', '0xe')]
20/10/2020 15:58:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:55              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x27af900e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x27af900e', '0xe')]
20/10/2020 15:58:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:56              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9739cb21 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:58:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x9739cb21', '0x1')]
20/10/2020 15:58:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:58:58              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x71e6e0e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:58:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:58:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x71e6e0e', '0xe')]
20/10/2020 15:58:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:58:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:58:59              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:58:59              dut.10.240.183.67: flow list 0
20/10/2020 15:58:59              dut.10.240.183.67: 
20/10/2020 15:58:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:00              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:00             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:59:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:59:00             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_udp_l3dst_l4dst passed
20/10/2020 15:59:00              dut.10.240.183.67: flow flush 0
20/10/2020 15:59:00              dut.10.240.183.67: 
20/10/2020 15:59:00             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_udp_l3src_l4src================
20/10/2020 15:59:00             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:59:00              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:59:00              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:59:00              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 15:59:00              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:59:00              dut.10.240.183.67: flow list 0
20/10/2020 15:59:00              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:59:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:01              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xee65b8f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:01             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:59:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xee65b8f5', '0x5')]
20/10/2020 15:59:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:02              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xced446f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:02             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:59:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xced446f5', '0x5')]
20/10/2020 15:59:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:03              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x7e38cb66 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:59:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e38cb66', '0x6')]
20/10/2020 15:59:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:05              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xee65b8f5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:59:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xee65b8f5', '0x5')]
20/10/2020 15:59:05             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:59:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:59:06              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:59:06              dut.10.240.183.67: flow list 0
20/10/2020 15:59:06              dut.10.240.183.67: 
20/10/2020 15:59:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:07              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:07             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:59:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:59:07             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_udp_l3src_l4src passed
20/10/2020 15:59:07              dut.10.240.183.67: flow flush 0
20/10/2020 15:59:07              dut.10.240.183.67: 
20/10/2020 15:59:07             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_udp_l3src_l4dst================
20/10/2020 15:59:07             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:59:07              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:59:07              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:59:07              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 15:59:07              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:59:07              dut.10.240.183.67: flow list 0
20/10/2020 15:59:07              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:59:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:08              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xee1f6e49 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:08             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:59:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xee1f6e49', '0x9')]
20/10/2020 15:59:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:09              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xceae9049 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:59:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xceae9049', '0x9')]
20/10/2020 15:59:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:10              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x7e38cb66 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:59:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e38cb66', '0x6')]
20/10/2020 15:59:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:12              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xee1f6e49 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:59:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xee1f6e49', '0x9')]
20/10/2020 15:59:12             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:59:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:59:13              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:59:13              dut.10.240.183.67: flow list 0
20/10/2020 15:59:13              dut.10.240.183.67: 
20/10/2020 15:59:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:14              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:14             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:59:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:59:14             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_udp_l3src_l4dst passed
20/10/2020 15:59:14              dut.10.240.183.67: flow flush 0
20/10/2020 15:59:14              dut.10.240.183.67: 
20/10/2020 15:59:14             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_udp_l4src================
20/10/2020 15:59:14             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:59:14              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:59:14              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:59:14              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 15:59:14              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:59:14              dut.10.240.183.67: flow list 0
20/10/2020 15:59:14              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:59:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:15              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xa0c852dd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:15             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:59:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xa0c852dd', '0xd')]
20/10/2020 15:59:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:16              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x408328cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:59:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x408328cd', '0xd')]
20/10/2020 15:59:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:17              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xa0c852dd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:17             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:59:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xa0c852dd', '0xd')]
20/10/2020 15:59:17             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:59:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:59:19              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:59:19              dut.10.240.183.67: flow list 0
20/10/2020 15:59:19              dut.10.240.183.67: 
20/10/2020 15:59:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:20              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:20             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:59:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:59:20             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_udp_l4src passed
20/10/2020 15:59:20              dut.10.240.183.67: flow flush 0
20/10/2020 15:59:20              dut.10.240.183.67: 
20/10/2020 15:59:20             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_udp_l4dst================
20/10/2020 15:59:20             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:59:20              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:59:20              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:59:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 15:59:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:59:20              dut.10.240.183.67: flow list 0
20/10/2020 15:59:20              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:59:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:21              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x16e8e323 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:21             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:59:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x16e8e323', '0x3')]
20/10/2020 15:59:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:22              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf6a39933 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:59:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xf6a39933', '0x3')]
20/10/2020 15:59:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:23              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x16e8e323 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:23             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:59:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x16e8e323', '0x3')]
20/10/2020 15:59:23             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:59:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:59:25              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:59:25              dut.10.240.183.67: flow list 0
20/10/2020 15:59:25              dut.10.240.183.67: 
20/10/2020 15:59:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:26              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:26             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:59:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:59:26             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_udp_l4dst passed
20/10/2020 15:59:26              dut.10.240.183.67: flow flush 0
20/10/2020 15:59:26              dut.10.240.183.67: 
20/10/2020 15:59:26             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_udp_all================
20/10/2020 15:59:26             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:59:26              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:59:26              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:59:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 15:59:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:59:26              dut.10.240.183.67: flow list 0
20/10/2020 15:59:26              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 15:59:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:27              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xbfa1e2b9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:27             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:59:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xbfa1e2b9', '0x9')]
20/10/2020 15:59:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:28              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xac3847fd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:59:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xac3847fd', '0xd')]
20/10/2020 15:59:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:29              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x1ae53ff9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:59:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x1ae53ff9', '0x9')]
20/10/2020 15:59:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:30              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc5775ef5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:59:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xc5775ef5', '0x5')]
20/10/2020 15:59:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:32              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9f101cb9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 15:59:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f101cb9', '0x9')]
20/10/2020 15:59:32             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:59:32              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:59:33              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:59:33              dut.10.240.183.67: flow list 0
20/10/2020 15:59:33              dut.10.240.183.67: 
20/10/2020 15:59:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:34              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc8d047cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:34             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:59:34             TestCVLIAVFRSSGTPU: hash_infos: [('0xc8d047cf', '0xf')]
20/10/2020 15:59:34             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_udp_all passed
20/10/2020 15:59:34              dut.10.240.183.67: flow flush 0
20/10/2020 15:59:34              dut.10.240.183.67: 
20/10/2020 15:59:34             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_dl_ipv4_udp_l3dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_udp_l3src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_udp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_udp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_udp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_udp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_udp_l4src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_udp_l4dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv4_udp_all': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_udp_l3dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_udp_l3src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_udp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_udp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_udp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_udp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_udp_l4src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_udp_l4dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_udp_all': 'passed'}
20/10/2020 15:59:34             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 15:59:34             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_udp Result PASSED:
20/10/2020 15:59:34              dut.10.240.183.67: flow flush 0
20/10/2020 15:59:35              dut.10.240.183.67: 
testpmd> 
20/10/2020 15:59:35              dut.10.240.183.67: clear port stats all
20/10/2020 15:59:36              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 15:59:36              dut.10.240.183.67: stop
20/10/2020 15:59:36              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 15:59:36             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_udp_symmetric Begin
20/10/2020 15:59:36              dut.10.240.183.67: 
20/10/2020 15:59:37                         tester: 
20/10/2020 15:59:37              dut.10.240.183.67: start
20/10/2020 15:59:37              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:59:37              dut.10.240.183.67: quit
20/10/2020 15:59:38              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 15:59:38              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 15:59:39              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 15:59:49              dut.10.240.183.67: set fwd rxonly
20/10/2020 15:59:50              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 15:59:50              dut.10.240.183.67: set verbose 1
20/10/2020 15:59:50              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 15:59:50              dut.10.240.183.67: show port info all
20/10/2020 15:59:50              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 15:59:50              dut.10.240.183.67: start
20/10/2020 15:59:50              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 15:59:50             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_tcp_symmetric================
20/10/2020 15:59:50             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:59:50              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:59:50              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:59:50              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:59:50              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:59:50              dut.10.240.183.67: flow list 0
20/10/2020 15:59:50              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:59:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:51              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb21bbeb1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:51             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 15:59:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xb21bbeb1', '0x1')]
20/10/2020 15:59:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:52              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb21bbeb1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:59:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xb21bbeb1', '0x1')]
20/10/2020 15:59:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:53              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb21bbeb1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:53             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:59:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xb21bbeb1', '0x1')]
20/10/2020 15:59:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:54              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb21bbeb1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 15:59:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 15:59:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xb21bbeb1', '0x1')]
20/10/2020 15:59:54             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 15:59:54              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 15:59:56              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 15:59:56              dut.10.240.183.67: flow list 0
20/10/2020 15:59:56              dut.10.240.183.67: 
20/10/2020 15:59:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:57              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:57             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:59:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2')]
20/10/2020 15:59:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:58              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:58             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:59:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2')]
20/10/2020 15:59:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 15:59:59              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 15:59:59             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 15:59:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2')]
20/10/2020 15:59:59             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_tcp_symmetric passed
20/10/2020 15:59:59              dut.10.240.183.67: flow flush 0
20/10/2020 15:59:59              dut.10.240.183.67: 
20/10/2020 15:59:59             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_tcp_symmetric================
20/10/2020 15:59:59             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 15:59:59              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:59:59              dut.10.240.183.67: 
Flow rule validated
20/10/2020 15:59:59              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 15:59:59              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 15:59:59              dut.10.240.183.67: flow list 0
20/10/2020 15:59:59              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 15:59:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:00              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb21bbeb1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:00             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:00:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xb21bbeb1', '0x1')]
20/10/2020 16:00:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:01              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb21bbeb1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xb21bbeb1', '0x1')]
20/10/2020 16:00:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:03              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb21bbeb1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xb21bbeb1', '0x1')]
20/10/2020 16:00:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:04              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb21bbeb1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:04             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xb21bbeb1', '0x1')]
20/10/2020 16:00:04             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:00:04              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:00:05              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:00:05              dut.10.240.183.67: flow list 0
20/10/2020 16:00:05              dut.10.240.183.67: 
20/10/2020 16:00:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:06              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:06             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:00:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2')]
20/10/2020 16:00:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:07              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:07             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:00:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2')]
20/10/2020 16:00:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:08              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:08             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:00:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2')]
20/10/2020 16:00:08             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_tcp_symmetric passed
20/10/2020 16:00:08              dut.10.240.183.67: flow flush 0
20/10/2020 16:00:08              dut.10.240.183.67: 
20/10/2020 16:00:08             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_dl_ipv4_tcp_symmetric': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_tcp_symmetric': 'passed'}
20/10/2020 16:00:08             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:00:08             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_udp_symmetric Result PASSED:
20/10/2020 16:00:08              dut.10.240.183.67: flow flush 0
20/10/2020 16:00:09              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:00:09              dut.10.240.183.67: clear port stats all
20/10/2020 16:00:11              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:00:11              dut.10.240.183.67: stop
20/10/2020 16:00:11              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 16:00:11             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_udp_without_ul_dl Begin
20/10/2020 16:00:11              dut.10.240.183.67: 
20/10/2020 16:00:11                         tester: 
20/10/2020 16:00:11              dut.10.240.183.67: start
20/10/2020 16:00:11              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:00:11             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3src================
20/10/2020 16:00:11             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:00:11              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 16:00:11              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:00:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 16:00:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:00:11              dut.10.240.183.67: flow list 0
20/10/2020 16:00:11              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 16:00:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:12              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x83673240 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:12             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:00:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x83673240', '0x0')]
20/10/2020 16:00:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:13              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x83673240 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x83673240', '0x0')]
20/10/2020 16:00:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:14              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf5e6fbe8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:00:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xf5e6fbe8', '0x8')]
20/10/2020 16:00:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:16              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x83673240 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:16             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x83673240', '0x0')]
20/10/2020 16:00:16             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:00:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:00:17              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:00:17              dut.10.240.183.67: flow list 0
20/10/2020 16:00:17              dut.10.240.183.67: 
20/10/2020 16:00:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:18              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:18             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:00:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2'), ('0x56c7e022', '0x2')]
20/10/2020 16:00:18             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3src passed
20/10/2020 16:00:18              dut.10.240.183.67: flow flush 0
20/10/2020 16:00:18              dut.10.240.183.67: 
20/10/2020 16:00:18             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3dst================
20/10/2020 16:00:18             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:00:18              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:00:18              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:00:18              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:00:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:00:18              dut.10.240.183.67: flow list 0
20/10/2020 16:00:18              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 16:00:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:19              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x424a4e46 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:19             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:00:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x424a4e46', '0x6')]
20/10/2020 16:00:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:20              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x424a4e46 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:20             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x424a4e46', '0x6')]
20/10/2020 16:00:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:21              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x34cb87ee - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:21             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:00:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x34cb87ee', '0xe')]
20/10/2020 16:00:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:23              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x424a4e46 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:00:23             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x424a4e46', '0x6')]
20/10/2020 16:00:23             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:00:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:00:24              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:00:24              dut.10.240.183.67: flow list 0
20/10/2020 16:00:24              dut.10.240.183.67: 
20/10/2020 16:00:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:25              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:25             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:00:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2'), ('0x56c7e022', '0x2')]
20/10/2020 16:00:25             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3dst passed
20/10/2020 16:00:25              dut.10.240.183.67: flow flush 0
20/10/2020 16:00:25              dut.10.240.183.67: 
20/10/2020 16:00:25             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4dst================
20/10/2020 16:00:25             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:00:25              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:00:25              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:00:25              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:00:25              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:00:25              dut.10.240.183.67: flow list 0
20/10/2020 16:00:25              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 16:00:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:26              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfe031f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:26             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:00:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xfe031f6', '0x6')]
20/10/2020 16:00:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:27              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x1a252471 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:00:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x1a252471', '0x1')]
20/10/2020 16:00:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:28              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x7961f85e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:00:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x7961f85e', '0xe')]
20/10/2020 16:00:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:30              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfe031f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:00:30             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xfe031f6', '0x6')]
20/10/2020 16:00:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:31              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfe031f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:00:31             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xfe031f6', '0x6')]
20/10/2020 16:00:31             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:00:31              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:00:32              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:00:32              dut.10.240.183.67: flow list 0
20/10/2020 16:00:32              dut.10.240.183.67: 
20/10/2020 16:00:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:33              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:33             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:00:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2'), ('0x56c7e022', '0x2')]
20/10/2020 16:00:33             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4dst passed
20/10/2020 16:00:33              dut.10.240.183.67: flow flush 0
20/10/2020 16:00:33              dut.10.240.183.67: 
20/10/2020 16:00:33             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4src================
20/10/2020 16:00:33             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:00:33              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:00:33              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:00:33              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:00:33              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:00:33              dut.10.240.183.67: flow list 0
20/10/2020 16:00:33              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 16:00:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:34              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x66c9273e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:34             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:00:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x66c9273e', '0xe')]
20/10/2020 16:00:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:36              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf0a6d10 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:00:36             TestCVLIAVFRSSGTPU: hash_infos: [('0xf0a6d10', '0x0')]
20/10/2020 16:00:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:37              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x1048ee96 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:37             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:00:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x1048ee96', '0x6')]
20/10/2020 16:00:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:38              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x66c9273e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:38             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x66c9273e', '0xe')]
20/10/2020 16:00:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:39              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x66c9273e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:39             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x66c9273e', '0xe')]
20/10/2020 16:00:39             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:00:39              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:00:40              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:00:40              dut.10.240.183.67: flow list 0
20/10/2020 16:00:40              dut.10.240.183.67: 
20/10/2020 16:00:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:41              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:41             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:00:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2'), ('0x56c7e022', '0x2')]
20/10/2020 16:00:41             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4src passed
20/10/2020 16:00:41              dut.10.240.183.67: flow flush 0
20/10/2020 16:00:41              dut.10.240.183.67: 
20/10/2020 16:00:41             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4src================
20/10/2020 16:00:41             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:00:41              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:00:41              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:00:41              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:00:41              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:00:41              dut.10.240.183.67: flow list 0
20/10/2020 16:00:41              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 16:00:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:43              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xa7e45b38 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:43             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:00:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xa7e45b38', '0x8')]
20/10/2020 16:00:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:44              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xce271116 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:00:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xce271116', '0x6')]
20/10/2020 16:00:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:45              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xd1659290 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:00:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xd1659290', '0x0')]
20/10/2020 16:00:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:46              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xa7e45b38 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:46             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xa7e45b38', '0x8')]
20/10/2020 16:00:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:47              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xa7e45b38 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xa7e45b38', '0x8')]
20/10/2020 16:00:47             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:00:47              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:00:48              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:00:48              dut.10.240.183.67: flow list 0
20/10/2020 16:00:48              dut.10.240.183.67: 
20/10/2020 16:00:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:49              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:49             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:00:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2'), ('0x56c7e022', '0x2')]
20/10/2020 16:00:49             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4src passed
20/10/2020 16:00:49              dut.10.240.183.67: flow flush 0
20/10/2020 16:00:49              dut.10.240.183.67: 
20/10/2020 16:00:49             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4dst================
20/10/2020 16:00:49             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:00:49              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:00:49              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:00:49              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:00:50              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:00:50              dut.10.240.183.67: flow list 0
20/10/2020 16:00:50              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 16:00:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:51              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xcecd4df0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:51             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:00:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xcecd4df0', '0x0')]
20/10/2020 16:00:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:52              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xdb085877 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:52             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:00:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xdb085877', '0x7')]
20/10/2020 16:00:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:53              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb84c8458 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:00:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xb84c8458', '0x8')]
20/10/2020 16:00:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:54              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xcecd4df0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xcecd4df0', '0x0')]
20/10/2020 16:00:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:55              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xcecd4df0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:00:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xcecd4df0', '0x0')]
20/10/2020 16:00:55             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:00:55              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:00:56              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:00:56              dut.10.240.183.67: flow list 0
20/10/2020 16:00:56              dut.10.240.183.67: 
20/10/2020 16:00:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:58              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:00:58             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:00:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2'), ('0x56c7e022', '0x2')]
20/10/2020 16:00:58             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4dst passed
20/10/2020 16:00:58              dut.10.240.183.67: flow flush 0
20/10/2020 16:00:58              dut.10.240.183.67: 
20/10/2020 16:00:58             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l4src_only================
20/10/2020 16:00:58             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:00:58              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 16:00:58              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:00:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 16:00:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:00:58              dut.10.240.183.67: flow list 0
20/10/2020 16:00:58              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 16:00:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:00:59              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x67cacccb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:00:59             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:00:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x67cacccb', '0xb')]
20/10/2020 16:00:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:00              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x2e00f04f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:01:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x2e00f04f', '0xf')]
20/10/2020 16:01:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:01              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x67cacccb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:01:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x67cacccb', '0xb')]
20/10/2020 16:01:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:02              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x67cacccb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:01:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x67cacccb', '0xb')]
20/10/2020 16:01:02             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:01:02              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:01:03              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:01:03              dut.10.240.183.67: flow list 0
20/10/2020 16:01:03              dut.10.240.183.67: 
20/10/2020 16:01:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:05              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:01:05             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:01:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2'), ('0x56c7e022', '0x2')]
20/10/2020 16:01:05             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l4src_only passed
20/10/2020 16:01:05              dut.10.240.183.67: flow flush 0
20/10/2020 16:01:05              dut.10.240.183.67: 
20/10/2020 16:01:05             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l4dst_only================
20/10/2020 16:01:05             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:01:05              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:01:05              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:01:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:01:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:01:05              dut.10.240.183.67: flow list 0
20/10/2020 16:01:05              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 16:01:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:06              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x14bc4d02 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:01:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:01:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x14bc4d02', '0x2')]
20/10/2020 16:01:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:07              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x97bbb0ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:01:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x97bbb0ab', '0xb')]
20/10/2020 16:01:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:08              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x14bc4d02 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:01:08             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:01:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x14bc4d02', '0x2')]
20/10/2020 16:01:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:09              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x14bc4d02 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:01:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:01:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x14bc4d02', '0x2')]
20/10/2020 16:01:09             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:01:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:01:10              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:01:10              dut.10.240.183.67: flow list 0
20/10/2020 16:01:10              dut.10.240.183.67: 
20/10/2020 16:01:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:12              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:01:12             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:01:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2'), ('0x56c7e022', '0x2')]
20/10/2020 16:01:12             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l4dst_only passed
20/10/2020 16:01:12              dut.10.240.183.67: flow flush 0
20/10/2020 16:01:12              dut.10.240.183.67: 
20/10/2020 16:01:12             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp================
20/10/2020 16:01:12             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:01:12              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 16:01:12              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:01:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 16:01:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:01:12              dut.10.240.183.67: flow list 0
20/10/2020 16:01:12              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 16:01:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:13              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x1a6e39bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:13             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:01:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x1a6e39bf', '0xf')]
20/10/2020 16:01:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:14              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x78a6bd45 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:01:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:01:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x78a6bd45', '0x5')]
20/10/2020 16:01:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:15              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9e9413b6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:01:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:01:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x9e9413b6', '0x6')]
20/10/2020 16:01:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:16              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x1e04f713 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:01:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:01:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x1e04f713', '0x3')]
20/10/2020 16:01:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:17              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x6ceff017 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:01:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ceff017', '0x7')]
20/10/2020 16:01:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:18              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x1a6e39bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:01:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x1a6e39bf', '0xf')]
20/10/2020 16:01:18             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:01:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:01:20              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:01:20              dut.10.240.183.67: flow list 0
20/10/2020 16:01:20              dut.10.240.183.67: 
20/10/2020 16:01:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:21              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x56c7e022 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:01:21             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:01:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x56c7e022', '0x2'), ('0x56c7e022', '0x2')]
20/10/2020 16:01:21             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp passed
20/10/2020 16:01:21              dut.10.240.183.67: flow flush 0
20/10/2020 16:01:21              dut.10.240.183.67: 
20/10/2020 16:01:21             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l4src_only': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp_l4dst_only': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_udp': 'passed'}
20/10/2020 16:01:21             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:01:21             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_udp_without_ul_dl Result PASSED:
20/10/2020 16:01:21              dut.10.240.183.67: flow flush 0
20/10/2020 16:01:22              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:01:22              dut.10.240.183.67: clear port stats all
20/10/2020 16:01:23              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:01:23              dut.10.240.183.67: stop
20/10/2020 16:01:23              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 16:01:23             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_udp_without_ul_dl_symmetric Begin
20/10/2020 16:01:23              dut.10.240.183.67: 
20/10/2020 16:01:24                         tester: 
20/10/2020 16:01:24              dut.10.240.183.67: start
20/10/2020 16:01:24              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:01:24              dut.10.240.183.67: quit
20/10/2020 16:01:25              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:01:25              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:01:26              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:01:36              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:01:36              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:01:36              dut.10.240.183.67: set verbose 1
20/10/2020 16:01:36              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:01:36              dut.10.240.183.67: show port info all
20/10/2020 16:01:36              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:01:36              dut.10.240.183.67: start
20/10/2020 16:01:37              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:01:37             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ipv4_udp_without_ul_dl_symmetric================
20/10/2020 16:01:37             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:01:37              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 16:01:37              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:01:37              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 16:01:37              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:01:37              dut.10.240.183.67: flow list 0
20/10/2020 16:01:37              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 UDP => RSS
20/10/2020 16:01:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:38              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9d7bb67f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:38             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-dl'}

20/10/2020 16:01:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x9d7bb67f', '0xf')]
20/10/2020 16:01:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:39              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9d7bb67f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:39             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:01:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x9d7bb67f', '0xf')]
20/10/2020 16:01:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:40              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9d7bb67f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:01:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x9d7bb67f', '0xf')]
20/10/2020 16:01:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:41              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9d7bb67f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:41             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:01:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x9d7bb67f', '0xf')]
20/10/2020 16:01:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:42              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9d7bb67f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:42             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-ul'}

20/10/2020 16:01:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x9d7bb67f', '0xf')]
20/10/2020 16:01:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:43              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9d7bb67f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:43             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:01:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x9d7bb67f', '0xf')]
20/10/2020 16:01:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:44              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9d7bb67f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:01:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x9d7bb67f', '0xf')]
20/10/2020 16:01:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:46              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9d7bb67f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:46             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:01:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x9d7bb67f', '0xf')]
20/10/2020 16:01:46             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:01:46              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:01:47              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:01:47              dut.10.240.183.67: flow list 0
20/10/2020 16:01:47              dut.10.240.183.67: 
20/10/2020 16:01:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:48              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:48             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:01:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xb1d2261a', '0xa')]
20/10/2020 16:01:48             TestCVLIAVFRSSGTPU: action: udp-dl

20/10/2020 16:01:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:49              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:49             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:01:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xb1d2261a', '0xa')]
20/10/2020 16:01:49             TestCVLIAVFRSSGTPU: action: udp-ul

20/10/2020 16:01:49             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ipv4_udp_without_ul_dl_symmetric passed
20/10/2020 16:01:49              dut.10.240.183.67: flow flush 0
20/10/2020 16:01:49              dut.10.240.183.67: 
20/10/2020 16:01:49             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_ipv4_udp_without_ul_dl_symmetric': 'passed'}
20/10/2020 16:01:49             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:01:49             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_udp_without_ul_dl_symmetric Result PASSED:
20/10/2020 16:01:49              dut.10.240.183.67: flow flush 0
20/10/2020 16:01:50              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:01:50              dut.10.240.183.67: clear port stats all
20/10/2020 16:01:51              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:01:51              dut.10.240.183.67: stop
20/10/2020 16:01:51              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 16:01:51             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_without_ul_dl Begin
20/10/2020 16:01:52              dut.10.240.183.67: 
20/10/2020 16:01:52                         tester: 
20/10/2020 16:01:52              dut.10.240.183.67: start
20/10/2020 16:01:52              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:01:52             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_l3dst================
20/10/2020 16:01:52             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:01:52              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:01:52              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:01:52              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:01:52              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:01:52              dut.10.240.183.67: flow list 0
20/10/2020 16:01:52              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 16:01:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:53              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x892eebff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:53             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:01:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x892eebff', '0xf')]
20/10/2020 16:01:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:54              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x47ea8113 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:01:54             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:01:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x47ea8113', '0x3')]
20/10/2020 16:01:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:55              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x892eebff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:01:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x892eebff', '0xf')]
20/10/2020 16:01:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:56              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x892eebff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:56             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:01:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x892eebff', '0xf')]
20/10/2020 16:01:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:57              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x47ea8113 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:01:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:01:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x47ea8113', '0x3')]
20/10/2020 16:01:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:01:59              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x892eebff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:01:59             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:01:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x892eebff', '0xf')]
20/10/2020 16:01:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:00              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x892eebff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:00             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:02:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x892eebff', '0xf')]
20/10/2020 16:02:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:01              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x47ea8113 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:02:01             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x47ea8113', '0x3')]
20/10/2020 16:02:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:02              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x892eebff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:02:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x892eebff', '0xf')]
20/10/2020 16:02:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:03              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x892eebff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:03             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:02:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x892eebff', '0xf')]
20/10/2020 16:02:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:04              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x47ea8113 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:02:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x47ea8113', '0x3')]
20/10/2020 16:02:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:05              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x892eebff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:02:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x892eebff', '0xf')]
20/10/2020 16:02:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:06              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x892eebff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:02:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x892eebff', '0xf')]
20/10/2020 16:02:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:07              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x47ea8113 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:02:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x47ea8113', '0x3')]
20/10/2020 16:02:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:09              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x892eebff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:02:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x892eebff', '0xf')]
20/10/2020 16:02:09             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:02:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:02:10              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:02:10              dut.10.240.183.67: flow list 0
20/10/2020 16:02:10              dut.10.240.183.67: 
20/10/2020 16:02:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:11              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:11             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:02:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xb1d2261a', '0xa'), ('0xb1d2261a', '0xa'), ('0xb1d2261a', '0xa'), ('0xb1d2261a', '0xa'), ('0xb1d2261a', '0xa')]
20/10/2020 16:02:11             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_l3dst passed
20/10/2020 16:02:11              dut.10.240.183.67: flow flush 0
20/10/2020 16:02:11              dut.10.240.183.67: 
20/10/2020 16:02:11             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_l3src================
20/10/2020 16:02:11             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:02:11              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 16:02:11              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:02:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 16:02:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:02:11              dut.10.240.183.67: flow list 0
20/10/2020 16:02:11              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 16:02:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:12              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x2f7171bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:12             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:02:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x2f7171bf', '0xf')]
20/10/2020 16:02:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:13              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xe1b51b53 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:02:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xe1b51b53', '0x3')]
20/10/2020 16:02:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:15              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x2f7171bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:15             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:02:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x2f7171bf', '0xf')]
20/10/2020 16:02:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:16              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x2f7171bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:16             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:02:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x2f7171bf', '0xf')]
20/10/2020 16:02:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:17              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xe1b51b53 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:02:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xe1b51b53', '0x3')]
20/10/2020 16:02:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:18              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x2f7171bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:02:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x2f7171bf', '0xf')]
20/10/2020 16:02:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:19              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x2f7171bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:19             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:02:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x2f7171bf', '0xf')]
20/10/2020 16:02:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:20              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xe1b51b53 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:02:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xe1b51b53', '0x3')]
20/10/2020 16:02:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:21              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x2f7171bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:02:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x2f7171bf', '0xf')]
20/10/2020 16:02:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:22              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x2f7171bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:22             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:02:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x2f7171bf', '0xf')]
20/10/2020 16:02:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:23              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xe1b51b53 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:02:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xe1b51b53', '0x3')]
20/10/2020 16:02:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:24              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x2f7171bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:02:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x2f7171bf', '0xf')]
20/10/2020 16:02:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:26              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x2f7171bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:26             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:02:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x2f7171bf', '0xf')]
20/10/2020 16:02:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:27              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xe1b51b53 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:02:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xe1b51b53', '0x3')]
20/10/2020 16:02:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:28              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x2f7171bf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:28             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:02:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x2f7171bf', '0xf')]
20/10/2020 16:02:28             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:02:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:02:29              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:02:29              dut.10.240.183.67: flow list 0
20/10/2020 16:02:29              dut.10.240.183.67: 
20/10/2020 16:02:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:30              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:30             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:02:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xb1d2261a', '0xa'), ('0xb1d2261a', '0xa'), ('0xb1d2261a', '0xa'), ('0xb1d2261a', '0xa'), ('0xb1d2261a', '0xa')]
20/10/2020 16:02:30             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_l3src passed
20/10/2020 16:02:30              dut.10.240.183.67: flow flush 0
20/10/2020 16:02:30              dut.10.240.183.67: 
20/10/2020 16:02:30             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv4_all================
20/10/2020 16:02:30             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:02:30              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 16:02:30              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:02:30              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 16:02:30              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:02:30              dut.10.240.183.67: flow list 0
20/10/2020 16:02:30              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 16:02:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x838b6120 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:32             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:02:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x838b6120', '0x0')]
20/10/2020 16:02:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:33              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xfc61d1a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:02:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xfc61d1a4', '0x4')]
20/10/2020 16:02:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:34              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4d4f0bcc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x4d4f0bcc', '0xc')]
20/10/2020 16:02:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:35              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x32a5bb48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:35             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x32a5bb48', '0x8')]
20/10/2020 16:02:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:36              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x838b6120 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:02:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x838b6120', '0x0')]
20/10/2020 16:02:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:37              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x838b6120 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:37             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:02:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x838b6120', '0x0')]
20/10/2020 16:02:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:38              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xfc61d1a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:02:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xfc61d1a4', '0x4')]
20/10/2020 16:02:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:39              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4d4f0bcc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x4d4f0bcc', '0xc')]
20/10/2020 16:02:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:40              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x32a5bb48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:40             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x32a5bb48', '0x8')]
20/10/2020 16:02:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:41              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x838b6120 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:41             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:02:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x838b6120', '0x0')]
20/10/2020 16:02:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:43              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x838b6120 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:43             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:02:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x838b6120', '0x0')]
20/10/2020 16:02:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:44              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xfc61d1a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:02:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xfc61d1a4', '0x4')]
20/10/2020 16:02:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:45              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x4d4f0bcc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x4d4f0bcc', '0xc')]
20/10/2020 16:02:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:46              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x32a5bb48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x32a5bb48', '0x8')]
20/10/2020 16:02:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:47              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0x838b6120 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:02:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x838b6120', '0x0')]
20/10/2020 16:02:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:48              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x838b6120 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:02:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x838b6120', '0x0')]
20/10/2020 16:02:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:49              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfc61d1a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:02:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xfc61d1a4', '0x4')]
20/10/2020 16:02:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:50              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4d4f0bcc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x4d4f0bcc', '0xc')]
20/10/2020 16:02:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:51              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x32a5bb48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x32a5bb48', '0x8')]
20/10/2020 16:02:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:53              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x838b6120 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:53             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:02:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x838b6120', '0x0')]
20/10/2020 16:02:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:54              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x838b6120 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:02:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x838b6120', '0x0')]
20/10/2020 16:02:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:55              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfc61d1a4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:02:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xfc61d1a4', '0x4')]
20/10/2020 16:02:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:56              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4d4f0bcc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x4d4f0bcc', '0xc')]
20/10/2020 16:02:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:57              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x32a5bb48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:02:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x32a5bb48', '0x8')]
20/10/2020 16:02:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:02:58              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x838b6120 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:02:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:02:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x838b6120', '0x0')]
20/10/2020 16:02:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:02:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:02:59              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:02:59              dut.10.240.183.67: flow list 0
20/10/2020 16:02:59              dut.10.240.183.67: 
20/10/2020 16:02:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:00              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb1d2261a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:00             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:03:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xb1d2261a', '0xa'), ('0xb1d2261a', '0xa'), ('0xb1d2261a', '0xa'), ('0xb1d2261a', '0xa'), ('0xb1d2261a', '0xa')]
20/10/2020 16:03:00             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv4_all passed
20/10/2020 16:03:00              dut.10.240.183.67: flow flush 0
20/10/2020 16:03:00              dut.10.240.183.67: 
20/10/2020 16:03:00             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_l3dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_l3src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv4_all': 'passed'}
20/10/2020 16:03:00             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:03:00             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_without_ul_dl Result PASSED:
20/10/2020 16:03:00              dut.10.240.183.67: flow flush 0
20/10/2020 16:03:02              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:03:02              dut.10.240.183.67: clear port stats all
20/10/2020 16:03:03              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:03:03              dut.10.240.183.67: stop
20/10/2020 16:03:03              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 16:03:03             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_without_ul_dl_symmetric Begin
20/10/2020 16:03:03              dut.10.240.183.67: 
20/10/2020 16:03:03                         tester: 
20/10/2020 16:03:03              dut.10.240.183.67: start
20/10/2020 16:03:03              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:03:03              dut.10.240.183.67: quit
20/10/2020 16:03:05              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:03:05              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:03:06              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:03:16              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:03:16              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:03:16              dut.10.240.183.67: set verbose 1
20/10/2020 16:03:16              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:03:16              dut.10.240.183.67: show port info all
20/10/2020 16:03:16              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:03:16              dut.10.240.183.67: start
20/10/2020 16:03:16              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:03:16             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ipv4_without_ul_dl_symmetric================
20/10/2020 16:03:16             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:03:16              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 16:03:16              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:03:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 16:03:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:03:16              dut.10.240.183.67: flow list 0
20/10/2020 16:03:16              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 16:03:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:18              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xfbdf8cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:03:18             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 16:03:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbdf8cd', '0xd')]
20/10/2020 16:03:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:19              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xfbdf8cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:03:19             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:03:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbdf8cd', '0xd')]
20/10/2020 16:03:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:20              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xfbdf8cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:03:20             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 16:03:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbdf8cd', '0xd')]
20/10/2020 16:03:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:21              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xfbdf8cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:03:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:03:21             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbdf8cd', '0xd')]
20/10/2020 16:03:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:22              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfbdf8cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:03:22             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 16:03:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbdf8cd', '0xd')]
20/10/2020 16:03:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:23              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfbdf8cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:03:23             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:03:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbdf8cd', '0xd')]
20/10/2020 16:03:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:24              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfbdf8cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:03:24             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 16:03:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbdf8cd', '0xd')]
20/10/2020 16:03:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:25              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfbdf8cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:03:25             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:03:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbdf8cd', '0xd')]
20/10/2020 16:03:25             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:03:25              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:03:26              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:03:26              dut.10.240.183.67: flow list 0
20/10/2020 16:03:27              dut.10.240.183.67: 
20/10/2020 16:03:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:28              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:28             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 16:03:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc1f7c61', '0x1')]
20/10/2020 16:03:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:29              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:29             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 16:03:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc1f7c61', '0x1')]
20/10/2020 16:03:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:30              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:30             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 16:03:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc1f7c61', '0x1')]
20/10/2020 16:03:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:31              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:31             TestCVLIAVFRSSGTPU: action: ipv4-udp

20/10/2020 16:03:31             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:03:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc1f7c61', '0x1')]
20/10/2020 16:03:31             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ipv4_without_ul_dl_symmetric passed
20/10/2020 16:03:31              dut.10.240.183.67: flow flush 0
20/10/2020 16:03:31              dut.10.240.183.67: 
20/10/2020 16:03:31             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_ipv4_without_ul_dl_symmetric': 'passed'}
20/10/2020 16:03:31             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:03:31             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv4_without_ul_dl_symmetric Result PASSED:
20/10/2020 16:03:31              dut.10.240.183.67: flow flush 0
20/10/2020 16:03:32              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:03:32              dut.10.240.183.67: clear port stats all
20/10/2020 16:03:33              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:03:33              dut.10.240.183.67: stop
20/10/2020 16:03:33              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 16:03:33             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6 Begin
20/10/2020 16:03:34              dut.10.240.183.67: 
20/10/2020 16:03:34                         tester: 
20/10/2020 16:03:34              dut.10.240.183.67: start
20/10/2020 16:03:34              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:03:34             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_l3dst================
20/10/2020 16:03:34             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:03:34              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:03:34              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:03:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:03:34              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:03:34              dut.10.240.183.67: flow list 0
20/10/2020 16:03:34              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 16:03:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:35              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:03:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:03:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:36              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xce3f30fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:03:36             TestCVLIAVFRSSGTPU: hash_infos: [('0xce3f30fc', '0xc')]
20/10/2020 16:03:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:37              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:03:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:03:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:38              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:03:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:03:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:39              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xce3f30fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:03:39             TestCVLIAVFRSSGTPU: hash_infos: [('0xce3f30fc', '0xc')]
20/10/2020 16:03:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:41              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:41             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:03:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:03:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:42              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:42             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:03:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:03:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:43              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xce3f30fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:43             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:03:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xce3f30fc', '0xc')]
20/10/2020 16:03:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:44              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:03:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:03:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:45              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:45             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:03:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:03:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:46              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xce3f30fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:03:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xce3f30fc', '0xc')]
20/10/2020 16:03:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:47              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:03:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:03:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:48              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:03:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:03:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:49              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xce3f30fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:03:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xce3f30fc', '0xc')]
20/10/2020 16:03:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:51              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:03:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:03:51             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:03:51              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:03:52              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:03:52              dut.10.240.183.67: flow list 0
20/10/2020 16:03:52              dut.10.240.183.67: 
20/10/2020 16:03:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:53              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:53             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:03:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1')]
20/10/2020 16:03:53             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_l3dst passed
20/10/2020 16:03:53              dut.10.240.183.67: flow flush 0
20/10/2020 16:03:53              dut.10.240.183.67: 
20/10/2020 16:03:53             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_l3src================
20/10/2020 16:03:53             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:03:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 16:03:53              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:03:53              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 16:03:53              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:03:53              dut.10.240.183.67: flow list 0
20/10/2020 16:03:53              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 16:03:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:54              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:03:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:03:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:55              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:03:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:03:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:56              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb67efbd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:03:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:03:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xb67efbd3', '0x3')]
20/10/2020 16:03:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:58              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:58             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:03:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:03:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:03:59              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:03:59             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:03:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:03:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:00              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xb67efbd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xb67efbd3', '0x3')]
20/10/2020 16:04:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:01              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:01             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:04:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:02              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:04:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:04:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:03              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xb67efbd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xb67efbd3', '0x3')]
20/10/2020 16:04:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:04              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:04             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:04:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:05              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:04:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:04:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:06              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xb67efbd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:06             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xb67efbd3', '0x3')]
20/10/2020 16:04:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:08              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:08             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:04:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:09              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:04:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:04:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:10              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb67efbd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xb67efbd3', '0x3')]
20/10/2020 16:04:10             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:04:10              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:04:11              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:04:11              dut.10.240.183.67: flow list 0
20/10/2020 16:04:11              dut.10.240.183.67: 
20/10/2020 16:04:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:12              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:12             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:04:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1')]
20/10/2020 16:04:12             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_l3src passed
20/10/2020 16:04:12              dut.10.240.183.67: flow flush 0
20/10/2020 16:04:12              dut.10.240.183.67: 
20/10/2020 16:04:12             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_all================
20/10/2020 16:04:12             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:04:12              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 16:04:12              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:04:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 16:04:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:04:12              dut.10.240.183.67: flow list 0
20/10/2020 16:04:12              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 16:04:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:14              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x99009a44 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:14             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x99009a44', '0x4')]
20/10/2020 16:04:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:15              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x85673839 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x85673839', '0x9')]
20/10/2020 16:04:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:16              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x6efe94b6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x6efe94b6', '0x6')]
20/10/2020 16:04:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:17              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x729936cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x729936cb', '0xb')]
20/10/2020 16:04:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:18              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x99009a44 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:18             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x99009a44', '0x4')]
20/10/2020 16:04:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:19              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x85673839 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:19             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x85673839', '0x9')]
20/10/2020 16:04:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:20              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6efe94b6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x6efe94b6', '0x6')]
20/10/2020 16:04:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:21              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x729936cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:21             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x729936cb', '0xb')]
20/10/2020 16:04:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:22              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x99009a44 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:22             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x99009a44', '0x4')]
20/10/2020 16:04:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:23              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x85673839 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x85673839', '0x9')]
20/10/2020 16:04:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:25              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6efe94b6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x6efe94b6', '0x6')]
20/10/2020 16:04:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:26              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x729936cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x729936cb', '0xb')]
20/10/2020 16:04:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:27              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x99009a44 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:27             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x99009a44', '0x4')]
20/10/2020 16:04:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:28              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x85673839 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x85673839', '0x9')]
20/10/2020 16:04:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:29              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6efe94b6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x6efe94b6', '0x6')]
20/10/2020 16:04:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:30              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x729936cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x729936cb', '0xb')]
20/10/2020 16:04:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:31              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x99009a44 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:31             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x99009a44', '0x4')]
20/10/2020 16:04:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:32              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x85673839 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x85673839', '0x9')]
20/10/2020 16:04:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:33              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x6efe94b6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:04:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x6efe94b6', '0x6')]
20/10/2020 16:04:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:35              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x729936cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:35             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x729936cb', '0xb')]
20/10/2020 16:04:35             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:04:35              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:04:36              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:04:36              dut.10.240.183.67: flow list 0
20/10/2020 16:04:36              dut.10.240.183.67: 
20/10/2020 16:04:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:37              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:37             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:04:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1')]
20/10/2020 16:04:37             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_all passed
20/10/2020 16:04:37              dut.10.240.183.67: flow flush 0
20/10/2020 16:04:37              dut.10.240.183.67: 
20/10/2020 16:04:37             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_l3dst================
20/10/2020 16:04:37             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:04:37              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:04:37              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:04:37              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:04:37              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:04:37              dut.10.240.183.67: flow list 0
20/10/2020 16:04:37              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 16:04:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:38              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:04:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:39              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xce3f30fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:39             TestCVLIAVFRSSGTPU: hash_infos: [('0xce3f30fc', '0xc')]
20/10/2020 16:04:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:41              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:41             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:04:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:04:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:42              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:42             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:04:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:43              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xce3f30fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:43             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xce3f30fc', '0xc')]
20/10/2020 16:04:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:44              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:44             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:04:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:04:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:45              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:45             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:04:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:46              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xce3f30fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xce3f30fc', '0xc')]
20/10/2020 16:04:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:47              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:04:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:04:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:48              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:04:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:49              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xce3f30fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xce3f30fc', '0xc')]
20/10/2020 16:04:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:50              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:04:50             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:04:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:52              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:52             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:04:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:53              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xce3f30fc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:04:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xce3f30fc', '0xc')]
20/10/2020 16:04:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:54              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xc2e71d3f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:04:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e71d3f', '0xf')]
20/10/2020 16:04:54             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:04:54              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:04:55              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:04:55              dut.10.240.183.67: flow list 0
20/10/2020 16:04:55              dut.10.240.183.67: 
20/10/2020 16:04:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:56              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:56             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:04:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1')]
20/10/2020 16:04:56             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_l3dst passed
20/10/2020 16:04:56              dut.10.240.183.67: flow flush 0
20/10/2020 16:04:56              dut.10.240.183.67: 
20/10/2020 16:04:56             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_l3src================
20/10/2020 16:04:56             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:04:56              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 16:04:56              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:04:56              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 16:04:56              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:04:56              dut.10.240.183.67: flow list 0
20/10/2020 16:04:56              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 16:04:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:58              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:58             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:04:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:04:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:04:59              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:04:59             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:04:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:04:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:00              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xb67efbd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xb67efbd3', '0x3')]
20/10/2020 16:05:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:01              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:01             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:05:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:05:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:02              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:05:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:05:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:03              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xb67efbd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xb67efbd3', '0x3')]
20/10/2020 16:05:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:04              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:04             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:05:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:05:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:05              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:05:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:05:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:06              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xb67efbd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:06             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xb67efbd3', '0x3')]
20/10/2020 16:05:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:07              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:07             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:05:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:05:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:09              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:05:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:05:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:10              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xb67efbd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xb67efbd3', '0x3')]
20/10/2020 16:05:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:11              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:11             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:05:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:05:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:12              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x4180f521 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:05:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x4180f521', '0x1')]
20/10/2020 16:05:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:13              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb67efbd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xb67efbd3', '0x3')]
20/10/2020 16:05:13             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:05:13              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:05:14              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:05:14              dut.10.240.183.67: flow list 0
20/10/2020 16:05:14              dut.10.240.183.67: 
20/10/2020 16:05:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:15              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:15             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:05:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1')]
20/10/2020 16:05:15             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_l3src passed
20/10/2020 16:05:15              dut.10.240.183.67: flow flush 0
20/10/2020 16:05:15              dut.10.240.183.67: 
20/10/2020 16:05:15             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_all================
20/10/2020 16:05:15             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:05:15              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 16:05:16              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:05:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 16:05:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:05:16              dut.10.240.183.67: flow list 0
20/10/2020 16:05:16              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 16:05:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:17              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x99009a44 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:17             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:05:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x99009a44', '0x4')]
20/10/2020 16:05:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:18              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x85673839 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x85673839', '0x9')]
20/10/2020 16:05:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:19              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x6efe94b6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:19             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x6efe94b6', '0x6')]
20/10/2020 16:05:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:20              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x729936cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x729936cb', '0xb')]
20/10/2020 16:05:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:21              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x99009a44 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:21             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:05:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x99009a44', '0x4')]
20/10/2020 16:05:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:22              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x85673839 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x85673839', '0x9')]
20/10/2020 16:05:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:23              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6efe94b6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x6efe94b6', '0x6')]
20/10/2020 16:05:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:25              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x729936cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x729936cb', '0xb')]
20/10/2020 16:05:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:26              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x99009a44 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:26             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:05:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x99009a44', '0x4')]
20/10/2020 16:05:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:27              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x85673839 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x85673839', '0x9')]
20/10/2020 16:05:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:28              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6efe94b6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x6efe94b6', '0x6')]
20/10/2020 16:05:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:29              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x729936cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x729936cb', '0xb')]
20/10/2020 16:05:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:30              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x99009a44 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:30             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:05:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x99009a44', '0x4')]
20/10/2020 16:05:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:31              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x85673839 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x85673839', '0x9')]
20/10/2020 16:05:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:32              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6efe94b6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x6efe94b6', '0x6')]
20/10/2020 16:05:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:33              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x729936cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x729936cb', '0xb')]
20/10/2020 16:05:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:34              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x99009a44 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:34             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:05:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x99009a44', '0x4')]
20/10/2020 16:05:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:36              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x85673839 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x85673839', '0x9')]
20/10/2020 16:05:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:37              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x6efe94b6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:05:37             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x6efe94b6', '0x6')]
20/10/2020 16:05:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:38              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x729936cb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:05:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x729936cb', '0xb')]
20/10/2020 16:05:38             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:05:38              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:05:39              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:05:39              dut.10.240.183.67: flow list 0
20/10/2020 16:05:39              dut.10.240.183.67: 
20/10/2020 16:05:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:40              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xdc1f7c61 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:40             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:05:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1'), ('0xdc1f7c61', '0x1')]
20/10/2020 16:05:40             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_all passed
20/10/2020 16:05:40              dut.10.240.183.67: flow flush 0
20/10/2020 16:05:40              dut.10.240.183.67: 
20/10/2020 16:05:40             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_dl_ipv6_l3dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_l3src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_all': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_l3dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_l3src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_all': 'passed'}
20/10/2020 16:05:40             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:05:40             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6 Result PASSED:
20/10/2020 16:05:40              dut.10.240.183.67: flow flush 0
20/10/2020 16:05:41              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:05:41              dut.10.240.183.67: clear port stats all
20/10/2020 16:05:43              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:05:43              dut.10.240.183.67: stop
20/10/2020 16:05:43              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 16:05:43             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_symmetric Begin
20/10/2020 16:05:43              dut.10.240.183.67: 
20/10/2020 16:05:43                         tester: 
20/10/2020 16:05:43              dut.10.240.183.67: start
20/10/2020 16:05:43              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:05:43              dut.10.240.183.67: quit
20/10/2020 16:05:44              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:05:44              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:05:46              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:05:56              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:05:56              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:05:56              dut.10.240.183.67: set verbose 1
20/10/2020 16:05:56              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:05:56              dut.10.240.183.67: show port info all
20/10/2020 16:05:56              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:05:56              dut.10.240.183.67: start
20/10/2020 16:05:56              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:05:56             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_symmetric================
20/10/2020 16:05:56             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:05:56              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 16:05:56              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:05:56              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 16:05:56              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:05:56              dut.10.240.183.67: flow list 0
20/10/2020 16:05:56              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 16:05:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:57              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:57             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 16:05:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:05:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:58              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:05:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:05:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:05:59              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:05:59             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 16:05:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:05:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:01              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:01             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:06:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:02              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:02             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 16:06:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:03              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:06:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:04              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x488f9d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:06:04             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 16:06:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x488f9d5', '0x5')]
20/10/2020 16:06:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:05              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x488f9d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:06:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:06:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x488f9d5', '0x5')]
20/10/2020 16:06:05             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:06:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:06:06              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:06:06              dut.10.240.183.67: flow list 0
20/10/2020 16:06:06              dut.10.240.183.67: 
20/10/2020 16:06:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:07              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:07             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 16:06:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:07             TestCVLIAVFRSSGTPU: hash value ['0xab973ac7'] should be different with ipv4-nonfrag ['0xab973ac7']
20/10/2020 16:06:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:08              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:08             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 16:06:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:08             TestCVLIAVFRSSGTPU: hash value ['0xab973ac7'] should be different with ipv4-frag ['0xab973ac7']
20/10/2020 16:06:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:10              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:10             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 16:06:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:10             TestCVLIAVFRSSGTPU: hash value ['0xab973ac7'] should be different with ipv4-icmp ['0xab973ac7']
20/10/2020 16:06:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:11              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:11             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-udp'}

20/10/2020 16:06:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:11             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_symmetric failed: '["hash value [\'0xab973ac7\'] should be different with ipv4-nonfrag [\'0xab973ac7\']", "hash value [\'0xab973ac7\'] should be different with ipv4-frag [\'0xab973ac7\']", "hash value [\'0xab973ac7\'] should be different with ipv4-icmp [\'0xab973ac7\']"]'
20/10/2020 16:06:11              dut.10.240.183.67: flow flush 0
20/10/2020 16:06:11              dut.10.240.183.67: 
20/10/2020 16:06:11             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_symmetric================
20/10/2020 16:06:11             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:06:11              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 16:06:11              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:06:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 16:06:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:06:11              dut.10.240.183.67: flow list 0
20/10/2020 16:06:11              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 16:06:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:12              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:12             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 16:06:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:13              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:06:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:14              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:14             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 16:06:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:15              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=582 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:15             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:06:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:16              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:16             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 16:06:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:18              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:06:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:19              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x488f9d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:06:19             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 16:06:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x488f9d5', '0x5')]
20/10/2020 16:06:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:20              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x488f9d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:06:20             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:06:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x488f9d5', '0x5')]
20/10/2020 16:06:20             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:06:20              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:06:21              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:06:21              dut.10.240.183.67: flow list 0
20/10/2020 16:06:21              dut.10.240.183.67: 
20/10/2020 16:06:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:22              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:22             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 16:06:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:22             TestCVLIAVFRSSGTPU: hash value ['0xab973ac7'] should be different with ipv4-nonfrag ['0xab973ac7']
20/10/2020 16:06:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:23              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:23             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 16:06:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:23             TestCVLIAVFRSSGTPU: hash value ['0xab973ac7'] should be different with ipv4-frag ['0xab973ac7']
20/10/2020 16:06:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:24              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:24             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 16:06:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:24             TestCVLIAVFRSSGTPU: hash value ['0xab973ac7'] should be different with ipv4-icmp ['0xab973ac7']
20/10/2020 16:06:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:25              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:25             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-udp'}

20/10/2020 16:06:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:25             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_symmetric failed: '["hash value [\'0xab973ac7\'] should be different with ipv4-nonfrag [\'0xab973ac7\']", "hash value [\'0xab973ac7\'] should be different with ipv4-frag [\'0xab973ac7\']", "hash value [\'0xab973ac7\'] should be different with ipv4-icmp [\'0xab973ac7\']"]'
20/10/2020 16:06:25              dut.10.240.183.67: flow flush 0
20/10/2020 16:06:25              dut.10.240.183.67: 
20/10/2020 16:06:25             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_dl_ipv4_symmetric': 'failed', 'mac_ipv6_gtpu_eh_ul_ipv4_symmetric': 'failed'}
20/10/2020 16:06:25             TestCVLIAVFRSSGTPU: pass rate is: 0.0
20/10/2020 16:06:25             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_symmetric Result FAILED: 'some subcases failed'
20/10/2020 16:06:25              dut.10.240.183.67: flow flush 0
20/10/2020 16:06:27              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:06:27              dut.10.240.183.67: clear port stats all
20/10/2020 16:06:28              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:06:28              dut.10.240.183.67: stop
20/10/2020 16:06:28              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 16:06:28             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_tcp Begin
20/10/2020 16:06:28              dut.10.240.183.67: 
20/10/2020 16:06:28                         tester: 
20/10/2020 16:06:28              dut.10.240.183.67: start
20/10/2020 16:06:28              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:06:28             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3dst================
20/10/2020 16:06:28             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:06:28              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:06:28              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:06:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:06:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:06:28              dut.10.240.183.67: flow list 0
20/10/2020 16:06:28              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:06:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:29              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x7f182c2d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:06:29             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:06:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x7f182c2d', '0xd')]
20/10/2020 16:06:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:31              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x182bf548 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:06:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x182bf548', '0x8')]
20/10/2020 16:06:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:32              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x7f182c2d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:06:32             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:06:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x7f182c2d', '0xd')]
20/10/2020 16:06:32             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:06:32              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:06:33              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:06:33              dut.10.240.183.67: flow list 0
20/10/2020 16:06:33              dut.10.240.183.67: 
20/10/2020 16:06:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:34              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:34             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:06:34             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:34             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3dst passed
20/10/2020 16:06:34              dut.10.240.183.67: flow flush 0
20/10/2020 16:06:34              dut.10.240.183.67: 
20/10/2020 16:06:34             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3src================
20/10/2020 16:06:34             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:06:34              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 16:06:34              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:06:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 16:06:34              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:06:34              dut.10.240.183.67: flow list 0
20/10/2020 16:06:34              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:06:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:35              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x3419cd0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:06:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x3419cd0f', '0xf')]
20/10/2020 16:06:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:36              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x3419cd0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:06:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x3419cd0f', '0xf')]
20/10/2020 16:06:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:38              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xda75e587 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:06:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xda75e587', '0x7')]
20/10/2020 16:06:38             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:06:38              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:06:39              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:06:39              dut.10.240.183.67: flow list 0
20/10/2020 16:06:39              dut.10.240.183.67: 
20/10/2020 16:06:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:40              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:40             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:06:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:40             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3src passed
20/10/2020 16:06:40              dut.10.240.183.67: flow flush 0
20/10/2020 16:06:40              dut.10.240.183.67: 
20/10/2020 16:06:40             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3dst_l4src================
20/10/2020 16:06:40             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:06:40              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:06:40              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:06:40              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:06:40              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:06:40              dut.10.240.183.67: flow list 0
20/10/2020 16:06:40              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:06:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:41              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xfa7454fb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:06:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xfa7454fb', '0xb')]
20/10/2020 16:06:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:42              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x9d478d9e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:06:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x9d478d9e', '0xe')]
20/10/2020 16:06:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:43              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x46280fb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:43             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:06:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x46280fb0', '0x0')]
20/10/2020 16:06:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:45              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xfa7454fb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:45             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:06:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xfa7454fb', '0xb')]
20/10/2020 16:06:45             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:06:45              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:06:46              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:06:46              dut.10.240.183.67: flow list 0
20/10/2020 16:06:46              dut.10.240.183.67: 
20/10/2020 16:06:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:47              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:47             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:06:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:47             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3dst_l4src passed
20/10/2020 16:06:47              dut.10.240.183.67: flow flush 0
20/10/2020 16:06:47              dut.10.240.183.67: 
20/10/2020 16:06:47             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3dst_l4dst================
20/10/2020 16:06:47             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:06:47              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:06:47              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:06:47              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:06:47              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:06:47              dut.10.240.183.67: flow list 0
20/10/2020 16:06:47              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:06:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:48              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb95d3c20 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:06:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xb95d3c20', '0x0')]
20/10/2020 16:06:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:49              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xde6ee545 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:06:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:06:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xde6ee545', '0x5')]
20/10/2020 16:06:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:51              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x46280fb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:06:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x46280fb0', '0x0')]
20/10/2020 16:06:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:52              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb95d3c20 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:06:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xb95d3c20', '0x0')]
20/10/2020 16:06:52             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:06:52              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:06:53              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:06:53              dut.10.240.183.67: flow list 0
20/10/2020 16:06:53              dut.10.240.183.67: 
20/10/2020 16:06:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:54              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:54             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:06:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:06:54             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3dst_l4dst passed
20/10/2020 16:06:54              dut.10.240.183.67: flow flush 0
20/10/2020 16:06:54              dut.10.240.183.67: 
20/10/2020 16:06:54             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3src_l4src================
20/10/2020 16:06:54             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:06:54              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:06:54              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:06:54              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:06:54              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:06:54              dut.10.240.183.67: flow list 0
20/10/2020 16:06:54              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:06:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:55              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb175b5d9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:55             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:06:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xb175b5d9', '0x9')]
20/10/2020 16:06:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:56              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x5f199d51 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:06:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x5f199d51', '0x1')]
20/10/2020 16:06:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:58              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xd29ee92 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:06:58             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:06:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xd29ee92', '0x2')]
20/10/2020 16:06:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:06:59              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb175b5d9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:06:59             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:06:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xb175b5d9', '0x9')]
20/10/2020 16:06:59             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:06:59              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:07:00              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:07:00              dut.10.240.183.67: flow list 0
20/10/2020 16:07:00              dut.10.240.183.67: 
20/10/2020 16:07:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:01              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:01             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:07:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:07:01             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3src_l4src passed
20/10/2020 16:07:01              dut.10.240.183.67: flow flush 0
20/10/2020 16:07:01              dut.10.240.183.67: 
20/10/2020 16:07:01             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3src_l4dst================
20/10/2020 16:07:01             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:07:01              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:07:01              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:07:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:07:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:07:01              dut.10.240.183.67: flow list 0
20/10/2020 16:07:01              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:07:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:02              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xf25cdd02 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:07:02             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:07:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xf25cdd02', '0x2')]
20/10/2020 16:07:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:04              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x1c30f58a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x1c30f58a', '0xa')]
20/10/2020 16:07:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:05              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xd29ee92 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:07:05             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xd29ee92', '0x2')]
20/10/2020 16:07:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:06              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xf25cdd02 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:07:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:07:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xf25cdd02', '0x2')]
20/10/2020 16:07:06             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:07:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:07:07              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:07:07              dut.10.240.183.67: flow list 0
20/10/2020 16:07:07              dut.10.240.183.67: 
20/10/2020 16:07:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:08              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:08             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 16:07:08             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3src_l4dst passed
20/10/2020 16:07:08              dut.10.240.183.67: flow flush 0
20/10/2020 16:07:08              dut.10.240.183.67: 
20/10/2020 16:07:08             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_tcp_l4src================
20/10/2020 16:07:08             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:07:08              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 16:07:08              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:07:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 16:07:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:07:08              dut.10.240.183.67: flow list 0
20/10/2020 16:07:08              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:07:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:09              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xbd466b03 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:07:09             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:07:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xbd466b03', '0x3')]
20/10/2020 16:07:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:11              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x90aa80e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:07:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x90aa80e5', '0x5')]
20/10/2020 16:07:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:12              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xbd466b03 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:07:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:07:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xbd466b03', '0x3')]
20/10/2020 16:07:12             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:07:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:07:13              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:07:13              dut.10.240.183.67: flow list 0
20/10/2020 16:07:13              dut.10.240.183.67: 
20/10/2020 16:07:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:14              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:14             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:07:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:07:14             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_tcp_l4src passed
20/10/2020 16:07:14              dut.10.240.183.67: flow flush 0
20/10/2020 16:07:14              dut.10.240.183.67: 
20/10/2020 16:07:14             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_tcp_l4dst================
20/10/2020 16:07:14             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:07:14              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:07:14              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:07:14              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:07:14              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:07:14              dut.10.240.183.67: flow list 0
20/10/2020 16:07:14              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:07:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:15              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x4e491f0a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:15             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:07:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x4e491f0a', '0xa')]
20/10/2020 16:07:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:16              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x63a5f4ec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x63a5f4ec', '0xc')]
20/10/2020 16:07:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:18              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x4e491f0a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:07:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x4e491f0a', '0xa')]
20/10/2020 16:07:18             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:07:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:07:19              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:07:19              dut.10.240.183.67: flow list 0
20/10/2020 16:07:19              dut.10.240.183.67: 
20/10/2020 16:07:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:20              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:20             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 16:07:20             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_tcp_l4dst passed
20/10/2020 16:07:20              dut.10.240.183.67: flow flush 0
20/10/2020 16:07:20              dut.10.240.183.67: 
20/10/2020 16:07:20             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_tcp_all================
20/10/2020 16:07:20             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:07:20              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:07:20              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:07:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:07:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:07:20              dut.10.240.183.67: flow list 0
20/10/2020 16:07:20              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:07:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:21              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x5d497601 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:21             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:07:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x5d497601', '0x1')]
20/10/2020 16:07:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:22              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x3dbebfae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x3dbebfae', '0xe')]
20/10/2020 16:07:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:24              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x94e65934 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:07:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x94e65934', '0x4')]
20/10/2020 16:07:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:25              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xc022f417 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xc022f417', '0x7')]
20/10/2020 16:07:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:26              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb3255e89 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xb3255e89', '0x9')]
20/10/2020 16:07:26             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:07:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:07:27              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:07:27              dut.10.240.183.67: flow list 0
20/10/2020 16:07:27              dut.10.240.183.67: 
20/10/2020 16:07:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:28              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:28             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:07:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:07:28             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_tcp_all passed
20/10/2020 16:07:28              dut.10.240.183.67: flow flush 0
20/10/2020 16:07:28              dut.10.240.183.67: 
20/10/2020 16:07:28             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3dst================
20/10/2020 16:07:28             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:07:28              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:07:28              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:07:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:07:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:07:28              dut.10.240.183.67: flow list 0
20/10/2020 16:07:28              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:07:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:29              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x7f182c2d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:07:29             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:07:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x7f182c2d', '0xd')]
20/10/2020 16:07:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:31              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x182bf548 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x182bf548', '0x8')]
20/10/2020 16:07:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:32              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x7f182c2d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:07:32             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:07:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x7f182c2d', '0xd')]
20/10/2020 16:07:32             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:07:32              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:07:33              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:07:33              dut.10.240.183.67: flow list 0
20/10/2020 16:07:33              dut.10.240.183.67: 
20/10/2020 16:07:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:34              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:34             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:07:34             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:07:34             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3dst passed
20/10/2020 16:07:34              dut.10.240.183.67: flow flush 0
20/10/2020 16:07:34              dut.10.240.183.67: 
20/10/2020 16:07:34             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3src================
20/10/2020 16:07:34             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:07:34              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 16:07:34              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:07:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 16:07:34              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:07:34              dut.10.240.183.67: flow list 0
20/10/2020 16:07:34              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:07:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:35              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x3419cd0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:07:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x3419cd0f', '0xf')]
20/10/2020 16:07:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:36              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x3419cd0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:07:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x3419cd0f', '0xf')]
20/10/2020 16:07:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:38              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xda75e587 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xda75e587', '0x7')]
20/10/2020 16:07:38             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:07:38              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:07:39              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:07:39              dut.10.240.183.67: flow list 0
20/10/2020 16:07:39              dut.10.240.183.67: 
20/10/2020 16:07:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:40              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:40             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:07:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:07:40             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3src passed
20/10/2020 16:07:40              dut.10.240.183.67: flow flush 0
20/10/2020 16:07:40              dut.10.240.183.67: 
20/10/2020 16:07:40             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3dst_l4src================
20/10/2020 16:07:40             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:07:40              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:07:40              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:07:40              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:07:40              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:07:40              dut.10.240.183.67: flow list 0
20/10/2020 16:07:40              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:07:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:41              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xfa7454fb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:07:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xfa7454fb', '0xb')]
20/10/2020 16:07:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:42              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x9d478d9e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x9d478d9e', '0xe')]
20/10/2020 16:07:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:44              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x46280fb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x46280fb0', '0x0')]
20/10/2020 16:07:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:45              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xfa7454fb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:45             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:07:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xfa7454fb', '0xb')]
20/10/2020 16:07:45             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:07:45              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:07:46              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:07:46              dut.10.240.183.67: flow list 0
20/10/2020 16:07:46              dut.10.240.183.67: 
20/10/2020 16:07:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:47              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:47             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:07:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:07:47             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3dst_l4src passed
20/10/2020 16:07:47              dut.10.240.183.67: flow flush 0
20/10/2020 16:07:47              dut.10.240.183.67: 
20/10/2020 16:07:47             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3dst_l4dst================
20/10/2020 16:07:47             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:07:47              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:07:47              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:07:47              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:07:47              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:07:47              dut.10.240.183.67: flow list 0
20/10/2020 16:07:47              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:07:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:48              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb95d3c20 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:07:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xb95d3c20', '0x0')]
20/10/2020 16:07:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:49              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xde6ee545 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:07:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xde6ee545', '0x5')]
20/10/2020 16:07:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:51              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x46280fb0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x46280fb0', '0x0')]
20/10/2020 16:07:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:52              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb95d3c20 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:07:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xb95d3c20', '0x0')]
20/10/2020 16:07:52             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:07:52              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:07:53              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:07:53              dut.10.240.183.67: flow list 0
20/10/2020 16:07:53              dut.10.240.183.67: 
20/10/2020 16:07:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:54              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:54             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:07:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:07:54             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3dst_l4dst passed
20/10/2020 16:07:54              dut.10.240.183.67: flow flush 0
20/10/2020 16:07:54              dut.10.240.183.67: 
20/10/2020 16:07:54             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3src_l4src================
20/10/2020 16:07:54             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:07:54              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:07:54              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:07:54              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:07:54              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:07:54              dut.10.240.183.67: flow list 0
20/10/2020 16:07:54              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:07:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:55              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb175b5d9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:55             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:07:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xb175b5d9', '0x9')]
20/10/2020 16:07:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:57              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x5f199d51 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x5f199d51', '0x1')]
20/10/2020 16:07:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:58              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xd29ee92 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:07:58             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:07:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xd29ee92', '0x2')]
20/10/2020 16:07:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:07:59              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb175b5d9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:07:59             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:07:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xb175b5d9', '0x9')]
20/10/2020 16:07:59             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:07:59              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:08:00              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:08:00              dut.10.240.183.67: flow list 0
20/10/2020 16:08:00              dut.10.240.183.67: 
20/10/2020 16:08:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:01              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:01             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:08:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:08:01             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3src_l4src passed
20/10/2020 16:08:01              dut.10.240.183.67: flow flush 0
20/10/2020 16:08:01              dut.10.240.183.67: 
20/10/2020 16:08:01             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3src_l4dst================
20/10/2020 16:08:01             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:08:01              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:08:01              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:08:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:08:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:08:01              dut.10.240.183.67: flow list 0
20/10/2020 16:08:01              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:08:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:02              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xf25cdd02 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:02             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:08:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xf25cdd02', '0x2')]
20/10/2020 16:08:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:04              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x1c30f58a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:08:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x1c30f58a', '0xa')]
20/10/2020 16:08:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:05              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xd29ee92 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:05             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:08:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xd29ee92', '0x2')]
20/10/2020 16:08:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:06              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xf25cdd02 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:08:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xf25cdd02', '0x2')]
20/10/2020 16:08:06             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:08:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:08:07              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:08:07              dut.10.240.183.67: flow list 0
20/10/2020 16:08:07              dut.10.240.183.67: 
20/10/2020 16:08:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:08              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:08             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 16:08:08             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3src_l4dst passed
20/10/2020 16:08:08              dut.10.240.183.67: flow flush 0
20/10/2020 16:08:08              dut.10.240.183.67: 
20/10/2020 16:08:08             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_tcp_l4src================
20/10/2020 16:08:08             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:08:08              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 16:08:08              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:08:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 16:08:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:08:08              dut.10.240.183.67: flow list 0
20/10/2020 16:08:08              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:08:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:09              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xbd466b03 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:09             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:08:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xbd466b03', '0x3')]
20/10/2020 16:08:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:11              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x90aa80e5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:08:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x90aa80e5', '0x5')]
20/10/2020 16:08:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:12              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xbd466b03 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:08:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xbd466b03', '0x3')]
20/10/2020 16:08:12             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:08:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:08:13              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:08:13              dut.10.240.183.67: flow list 0
20/10/2020 16:08:13              dut.10.240.183.67: 
20/10/2020 16:08:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:14              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:14             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:08:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:08:14             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_tcp_l4src passed
20/10/2020 16:08:14              dut.10.240.183.67: flow flush 0
20/10/2020 16:08:14              dut.10.240.183.67: 
20/10/2020 16:08:14             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_tcp_l4dst================
20/10/2020 16:08:14             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:08:14              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:08:14              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:08:14              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:08:14              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:08:14              dut.10.240.183.67: flow list 0
20/10/2020 16:08:14              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:08:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:15              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x4e491f0a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:15             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:08:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x4e491f0a', '0xa')]
20/10/2020 16:08:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:17              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x63a5f4ec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:08:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x63a5f4ec', '0xc')]
20/10/2020 16:08:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:18              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x4e491f0a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:08:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x4e491f0a', '0xa')]
20/10/2020 16:08:18             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:08:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:08:19              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:08:19              dut.10.240.183.67: flow list 0
20/10/2020 16:08:19              dut.10.240.183.67: 
20/10/2020 16:08:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:20              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:20             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 16:08:20             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_tcp_l4dst passed
20/10/2020 16:08:20              dut.10.240.183.67: flow flush 0
20/10/2020 16:08:20              dut.10.240.183.67: 
20/10/2020 16:08:20             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_tcp_all================
20/10/2020 16:08:20             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:08:20              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:08:20              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:08:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:08:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:08:20              dut.10.240.183.67: flow list 0
20/10/2020 16:08:20              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:08:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:21              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x5d497601 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:21             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:08:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x5d497601', '0x1')]
20/10/2020 16:08:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:22              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x3dbebfae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:08:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x3dbebfae', '0xe')]
20/10/2020 16:08:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:24              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x94e65934 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:08:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x94e65934', '0x4')]
20/10/2020 16:08:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:25              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xc022f417 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:08:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xc022f417', '0x7')]
20/10/2020 16:08:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:26              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb3255e89 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:08:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xb3255e89', '0x9')]
20/10/2020 16:08:26             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:08:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:08:27              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:08:27              dut.10.240.183.67: flow list 0
20/10/2020 16:08:27              dut.10.240.183.67: 
20/10/2020 16:08:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:28              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xab973ac7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:28             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:08:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xab973ac7', '0x7')]
20/10/2020 16:08:28             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_tcp_all passed
20/10/2020 16:08:28              dut.10.240.183.67: flow flush 0
20/10/2020 16:08:28              dut.10.240.183.67: 
20/10/2020 16:08:28             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_tcp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_tcp_l4src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_tcp_l4dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_tcp_all': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_tcp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_tcp_l4src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_tcp_l4dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_tcp_all': 'passed'}
20/10/2020 16:08:28             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:08:28             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_tcp Result PASSED:
20/10/2020 16:08:28              dut.10.240.183.67: flow flush 0
20/10/2020 16:08:29              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:08:29              dut.10.240.183.67: clear port stats all
20/10/2020 16:08:30              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:08:30              dut.10.240.183.67: stop
20/10/2020 16:08:31              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 16:08:31             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_tcp_symmetric Begin
20/10/2020 16:08:31              dut.10.240.183.67: 
20/10/2020 16:08:31                         tester: 
20/10/2020 16:08:31              dut.10.240.183.67: start
20/10/2020 16:08:31              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:08:31              dut.10.240.183.67: quit
20/10/2020 16:08:32              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:08:32              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:08:34              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:08:44              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:08:44              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:08:44              dut.10.240.183.67: set verbose 1
20/10/2020 16:08:44              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:08:44              dut.10.240.183.67: show port info all
20/10/2020 16:08:44              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:08:44              dut.10.240.183.67: start
20/10/2020 16:08:44              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:08:44             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_tcp_symmetric================
20/10/2020 16:08:44             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:08:44              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:08:44              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:08:44              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:08:44              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:08:44              dut.10.240.183.67: flow list 0
20/10/2020 16:08:44              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:08:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:45              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xbd68c375 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:45             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:08:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xbd68c375', '0x5')]
20/10/2020 16:08:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:46              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xbd68c375 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:46             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:08:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xbd68c375', '0x5')]
20/10/2020 16:08:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:47              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xbd68c375 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:08:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xbd68c375', '0x5')]
20/10/2020 16:08:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:48              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xbd68c375 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:48             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:08:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xbd68c375', '0x5')]
20/10/2020 16:08:48             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:08:48              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:08:50              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:08:50              dut.10.240.183.67: flow list 0
20/10/2020 16:08:50              dut.10.240.183.67: 
20/10/2020 16:08:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:51              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:51             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:08:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf')]
20/10/2020 16:08:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:52              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:52             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:08:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf')]
20/10/2020 16:08:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:53              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:08:53             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:08:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf')]
20/10/2020 16:08:53             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_tcp_symmetric passed
20/10/2020 16:08:53              dut.10.240.183.67: flow flush 0
20/10/2020 16:08:53              dut.10.240.183.67: 
20/10/2020 16:08:53             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_tcp_symmetric================
20/10/2020 16:08:53             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:08:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:08:53              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:08:53              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:08:53              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:08:53              dut.10.240.183.67: flow list 0
20/10/2020 16:08:53              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:08:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:54              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xbd68c375 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:08:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xbd68c375', '0x5')]
20/10/2020 16:08:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:55              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xbd68c375 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:08:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xbd68c375', '0x5')]
20/10/2020 16:08:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:57              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xbd68c375 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:57             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:08:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xbd68c375', '0x5')]
20/10/2020 16:08:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:08:58              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xbd68c375 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:08:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:08:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xbd68c375', '0x5')]
20/10/2020 16:08:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:08:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:08:59              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:08:59              dut.10.240.183.67: flow list 0
20/10/2020 16:08:59              dut.10.240.183.67: 
20/10/2020 16:08:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:00              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:00             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:09:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf')]
20/10/2020 16:09:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:01              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:01             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:09:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf')]
20/10/2020 16:09:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:02              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:02             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:09:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf')]
20/10/2020 16:09:02             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_tcp_symmetric passed
20/10/2020 16:09:02              dut.10.240.183.67: flow flush 0
20/10/2020 16:09:02              dut.10.240.183.67: 
20/10/2020 16:09:02             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_dl_ipv4_tcp_symmetric': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_tcp_symmetric': 'passed'}
20/10/2020 16:09:02             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:09:02             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_tcp_symmetric Result PASSED:
20/10/2020 16:09:02              dut.10.240.183.67: flow flush 0
20/10/2020 16:09:03              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:09:03              dut.10.240.183.67: clear port stats all
20/10/2020 16:09:05              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:09:05              dut.10.240.183.67: stop
20/10/2020 16:09:05              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 16:09:05             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_tcp_without_ul_dl Begin
20/10/2020 16:09:05              dut.10.240.183.67: 
20/10/2020 16:09:05                         tester: 
20/10/2020 16:09:05              dut.10.240.183.67: start
20/10/2020 16:09:05              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:09:05             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3src================
20/10/2020 16:09:05             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:09:05              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 16:09:05              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:09:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 16:09:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:09:05              dut.10.240.183.67: flow list 0
20/10/2020 16:09:05              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:09:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:06              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xaf1bfba6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:09:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:09:06             TestCVLIAVFRSSGTPU: hash_infos: [('0xaf1bfba6', '0x6')]
20/10/2020 16:09:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:07              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xaf1bfba6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:09:07             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xaf1bfba6', '0x6')]
20/10/2020 16:09:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:09              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x7ac4f9e1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:09:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x7ac4f9e1', '0x1')]
20/10/2020 16:09:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:10              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xaf1bfba6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:09:10             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xaf1bfba6', '0x6')]
20/10/2020 16:09:10             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:09:10              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:09:11              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:09:11              dut.10.240.183.67: flow list 0
20/10/2020 16:09:11              dut.10.240.183.67: 
20/10/2020 16:09:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:12              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:12             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:09:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf'), ('0x33fe637f', '0xf')]
20/10/2020 16:09:12             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3src passed
20/10/2020 16:09:12              dut.10.240.183.67: flow flush 0
20/10/2020 16:09:12              dut.10.240.183.67: 
20/10/2020 16:09:12             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst================
20/10/2020 16:09:12             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:09:12              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:09:12              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:09:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:09:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:09:12              dut.10.240.183.67: flow list 0
20/10/2020 16:09:12              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:09:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:13              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x1f55af95 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:09:13             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:09:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x1f55af95', '0x5')]
20/10/2020 16:09:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:14              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x1f55af95 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:09:14             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x1f55af95', '0x5')]
20/10/2020 16:09:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:16              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x6093f2f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:09:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:09:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x6093f2f6', '0x6')]
20/10/2020 16:09:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:17              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x1f55af95 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:09:17             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x1f55af95', '0x5')]
20/10/2020 16:09:17             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:09:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:09:18              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:09:18              dut.10.240.183.67: flow list 0
20/10/2020 16:09:18              dut.10.240.183.67: 
20/10/2020 16:09:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:19              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:19             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:09:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf'), ('0x33fe637f', '0xf')]
20/10/2020 16:09:19             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst passed
20/10/2020 16:09:19              dut.10.240.183.67: flow flush 0
20/10/2020 16:09:19              dut.10.240.183.67: 
20/10/2020 16:09:19             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3src_l4dst================
20/10/2020 16:09:19             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:09:19              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:09:19              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:09:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:09:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:09:19              dut.10.240.183.67: flow list 0
20/10/2020 16:09:19              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:09:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:20              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xe7129728 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:20             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:09:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xe7129728', '0x8')]
20/10/2020 16:09:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:22              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb08ac5cc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:09:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xb08ac5cc', '0xc')]
20/10/2020 16:09:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:23              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x32cd956f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:09:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x32cd956f', '0xf')]
20/10/2020 16:09:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:24              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xe7129728 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xe7129728', '0x8')]
20/10/2020 16:09:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:25              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xe7129728 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:25             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xe7129728', '0x8')]
20/10/2020 16:09:25             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:09:25              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:09:26              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:09:26              dut.10.240.183.67: flow list 0
20/10/2020 16:09:26              dut.10.240.183.67: 
20/10/2020 16:09:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:27              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:27             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:09:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf'), ('0x33fe637f', '0xf')]
20/10/2020 16:09:27             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3src_l4dst passed
20/10/2020 16:09:27              dut.10.240.183.67: flow flush 0
20/10/2020 16:09:27              dut.10.240.183.67: 
20/10/2020 16:09:27             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst_l4src================
20/10/2020 16:09:27             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:09:27              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:09:27              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:09:27              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:09:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:09:27              dut.10.240.183.67: flow list 0
20/10/2020 16:09:27              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:09:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:29              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xe338fc3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:09:29             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:09:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xe338fc3d', '0xd')]
20/10/2020 16:09:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:30              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x5af68e6c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:09:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x5af68e6c', '0xc')]
20/10/2020 16:09:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:31              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x9cfea15e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:09:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x9cfea15e', '0xe')]
20/10/2020 16:09:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:32              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xe338fc3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:09:32             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xe338fc3d', '0xd')]
20/10/2020 16:09:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:33              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xe338fc3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:09:33             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xe338fc3d', '0xd')]
20/10/2020 16:09:33             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:09:33              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:09:34              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:09:34              dut.10.240.183.67: flow list 0
20/10/2020 16:09:34              dut.10.240.183.67: 
20/10/2020 16:09:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:35              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:35             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:09:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf'), ('0x33fe637f', '0xf')]
20/10/2020 16:09:35             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst_l4src passed
20/10/2020 16:09:35              dut.10.240.183.67: flow flush 0
20/10/2020 16:09:35              dut.10.240.183.67: 
20/10/2020 16:09:35             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3src_l4src================
20/10/2020 16:09:35             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:09:35              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:09:35              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:09:35              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:09:36              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:09:36              dut.10.240.183.67: flow list 0
20/10/2020 16:09:36              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:09:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:37              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x5376a80e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:37             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:09:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x5376a80e', '0xe')]
20/10/2020 16:09:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:38              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xeab8da5f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:09:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xeab8da5f', '0xf')]
20/10/2020 16:09:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:39              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x86a9aa49 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:09:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x86a9aa49', '0x9')]
20/10/2020 16:09:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:40              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x5376a80e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x5376a80e', '0xe')]
20/10/2020 16:09:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:41              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x5376a80e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:41             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x5376a80e', '0xe')]
20/10/2020 16:09:41             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:09:41              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:09:42              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:09:42              dut.10.240.183.67: flow list 0
20/10/2020 16:09:42              dut.10.240.183.67: 
20/10/2020 16:09:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:44              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:44             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:09:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf'), ('0x33fe637f', '0xf')]
20/10/2020 16:09:44             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3src_l4src passed
20/10/2020 16:09:44              dut.10.240.183.67: flow flush 0
20/10/2020 16:09:44              dut.10.240.183.67: 
20/10/2020 16:09:44             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst_l4dst================
20/10/2020 16:09:44             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:09:44              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:09:44              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:09:44              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:09:44              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:09:44              dut.10.240.183.67: flow list 0
20/10/2020 16:09:44              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:09:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:45              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x575cc31b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:45             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:09:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x575cc31b', '0xb')]
20/10/2020 16:09:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:46              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xc491ff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:09:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xc491ff', '0xf')]
20/10/2020 16:09:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:47              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x289a9e78 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:47             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:09:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x289a9e78', '0x8')]
20/10/2020 16:09:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:48              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x575cc31b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:48             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x575cc31b', '0xb')]
20/10/2020 16:09:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:49              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x575cc31b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:49             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x575cc31b', '0xb')]
20/10/2020 16:09:49             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:09:49              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:09:50              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:09:50              dut.10.240.183.67: flow list 0
20/10/2020 16:09:51              dut.10.240.183.67: 
20/10/2020 16:09:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:52              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:52             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:09:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf'), ('0x33fe637f', '0xf')]
20/10/2020 16:09:52             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst_l4dst passed
20/10/2020 16:09:52              dut.10.240.183.67: flow flush 0
20/10/2020 16:09:52              dut.10.240.183.67: 
20/10/2020 16:09:52             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l4src_only================
20/10/2020 16:09:52             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:09:52              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 16:09:52              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:09:52              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 16:09:52              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:09:52              dut.10.240.183.67: flow list 0
20/10/2020 16:09:52              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:09:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:53              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xa4cdf84c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:53             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:09:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xa4cdf84c', '0xc')]
20/10/2020 16:09:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:54              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x2bab4ae0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:54             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:09:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x2bab4ae0', '0x0')]
20/10/2020 16:09:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:55              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xa4cdf84c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xa4cdf84c', '0xc')]
20/10/2020 16:09:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:56              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xa4cdf84c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:56             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:09:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xa4cdf84c', '0xc')]
20/10/2020 16:09:56             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:09:56              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:09:58              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:09:58              dut.10.240.183.67: flow list 0
20/10/2020 16:09:58              dut.10.240.183.67: 
20/10/2020 16:09:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:09:59              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:09:59             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:09:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf'), ('0x33fe637f', '0xf')]
20/10/2020 16:09:59             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l4src_only passed
20/10/2020 16:09:59              dut.10.240.183.67: flow flush 0
20/10/2020 16:09:59              dut.10.240.183.67: 
20/10/2020 16:09:59             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l4dst_only================
20/10/2020 16:09:59             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:09:59              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:09:59              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:09:59              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:09:59              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:09:59              dut.10.240.183.67: flow list 0
20/10/2020 16:09:59              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:09:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:00              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x1826da66 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:00             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:10:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x1826da66', '0x6')]
20/10/2020 16:10:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:01              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x75dedbf5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:01             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:10:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x75dedbf5', '0x5')]
20/10/2020 16:10:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:02              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x1826da66 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:10:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:10:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x1826da66', '0x6')]
20/10/2020 16:10:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:03              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x1826da66 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:10:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:10:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x1826da66', '0x6')]
20/10/2020 16:10:03             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:10:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:10:05              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:10:05              dut.10.240.183.67: flow list 0
20/10/2020 16:10:05              dut.10.240.183.67: 
20/10/2020 16:10:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:06              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:10:06             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:10:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf'), ('0x33fe637f', '0xf')]
20/10/2020 16:10:06             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l4dst_only passed
20/10/2020 16:10:06              dut.10.240.183.67: flow flush 0
20/10/2020 16:10:06              dut.10.240.183.67: 
20/10/2020 16:10:06             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp================
20/10/2020 16:10:06             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:10:06              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:10:06              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:10:06              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:10:06              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:10:06              dut.10.240.183.67: flow list 0
20/10/2020 16:10:06              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:10:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:07              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb8e38e7b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:10:07             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:10:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xb8e38e7b', '0xb')]
20/10/2020 16:10:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:08              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xe120e9e7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:10:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:10:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xe120e9e7', '0x7')]
20/10/2020 16:10:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:09              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xdf7fd823 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:10:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xdf7fd823', '0x3')]
20/10/2020 16:10:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:10              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xa0fbf9de - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:10:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:10:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xa0fbf9de', '0xe')]
20/10/2020 16:10:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:12              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x6d3c8c3c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:10:12             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:10:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d3c8c3c', '0xc')]
20/10/2020 16:10:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:13              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0xb8e38e7b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:10:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:10:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xb8e38e7b', '0xb')]
20/10/2020 16:10:13             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:10:13              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:10:14              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:10:14              dut.10.240.183.67: flow list 0
20/10/2020 16:10:14              dut.10.240.183.67: 
20/10/2020 16:10:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:15              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x33fe637f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:10:15             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:10:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x33fe637f', '0xf'), ('0x33fe637f', '0xf')]
20/10/2020 16:10:15             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp passed
20/10/2020 16:10:15              dut.10.240.183.67: flow flush 0
20/10/2020 16:10:15              dut.10.240.183.67: 
20/10/2020 16:10:15             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l4src_only': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp_l4dst_only': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_tcp': 'passed'}
20/10/2020 16:10:15             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:10:15             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_tcp_without_ul_dl Result PASSED:
20/10/2020 16:10:15              dut.10.240.183.67: flow flush 0
20/10/2020 16:10:16              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:10:16              dut.10.240.183.67: clear port stats all
20/10/2020 16:10:17              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:10:17              dut.10.240.183.67: stop
20/10/2020 16:10:17              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 16:10:17             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric Begin
20/10/2020 16:10:18              dut.10.240.183.67: 
20/10/2020 16:10:18                         tester: 
20/10/2020 16:10:18              dut.10.240.183.67: start
20/10/2020 16:10:18              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:10:18              dut.10.240.183.67: quit
20/10/2020 16:10:20              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:10:20              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:10:21              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:10:31              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:10:31              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:10:31              dut.10.240.183.67: set verbose 1
20/10/2020 16:10:31              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:10:31              dut.10.240.183.67: show port info all
20/10/2020 16:10:31              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:10:31              dut.10.240.183.67: start
20/10/2020 16:10:31              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:10:31             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric================
20/10/2020 16:10:31             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:10:31              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:10:31              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:10:31              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:10:31              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:10:31              dut.10.240.183.67: flow list 0
20/10/2020 16:10:31              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:10:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:32              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x11473302 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:32             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-dl'}

20/10/2020 16:10:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x11473302', '0x2')]
20/10/2020 16:10:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:34              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x11473302 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:10:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x11473302', '0x2')]
20/10/2020 16:10:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:35              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x11473302 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:35             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:10:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x11473302', '0x2')]
20/10/2020 16:10:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:36              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x11473302 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:10:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x11473302', '0x2')]
20/10/2020 16:10:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:37              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x11473302 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:37             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-ul'}

20/10/2020 16:10:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x11473302', '0x2')]
20/10/2020 16:10:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:38              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x11473302 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:38             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:10:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x11473302', '0x2')]
20/10/2020 16:10:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:39              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x11473302 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:39             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:10:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x11473302', '0x2')]
20/10/2020 16:10:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:40              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x11473302 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:10:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x11473302', '0x2')]
20/10/2020 16:10:40             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:10:40              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:10:41              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:10:41              dut.10.240.183.67: flow list 0
20/10/2020 16:10:41              dut.10.240.183.67: 
20/10/2020 16:10:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:42              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:42             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:10:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:10:42             TestCVLIAVFRSSGTPU: action: udp-dl

20/10/2020 16:10:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:44              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:44             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:10:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:10:44             TestCVLIAVFRSSGTPU: action: udp-ul

20/10/2020 16:10:44             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric passed
20/10/2020 16:10:44              dut.10.240.183.67: flow flush 0
20/10/2020 16:10:44              dut.10.240.183.67: 
20/10/2020 16:10:44             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric': 'passed'}
20/10/2020 16:10:44             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:10:44             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_tcp_without_ul_dl_symmetric Result PASSED:
20/10/2020 16:10:44              dut.10.240.183.67: flow flush 0
20/10/2020 16:10:45              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:10:45              dut.10.240.183.67: clear port stats all
20/10/2020 16:10:46              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:10:46              dut.10.240.183.67: stop
20/10/2020 16:10:46              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

Done.
20/10/2020 16:10:46             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_udp Begin
20/10/2020 16:10:46              dut.10.240.183.67: 
20/10/2020 16:10:46                         tester: 
20/10/2020 16:10:46              dut.10.240.183.67: start
20/10/2020 16:10:46              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:10:46             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_udp_l3dst================
20/10/2020 16:10:46             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:10:46              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:10:46              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:10:46              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:10:46              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:10:46              dut.10.240.183.67: flow list 0
20/10/2020 16:10:47              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:10:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:48              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xfbe4d767 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:10:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:10:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbe4d767', '0x7')]
20/10/2020 16:10:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:49              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xa47801a3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:10:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xa47801a3', '0x3')]
20/10/2020 16:10:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:50              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xfbe4d767 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:10:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:10:50             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbe4d767', '0x7')]
20/10/2020 16:10:50             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:10:50              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:10:51              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:10:51              dut.10.240.183.67: flow list 0
20/10/2020 16:10:51              dut.10.240.183.67: 
20/10/2020 16:10:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:52              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:52             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:10:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:10:52             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_udp_l3dst passed
20/10/2020 16:10:52              dut.10.240.183.67: flow flush 0
20/10/2020 16:10:52              dut.10.240.183.67: 
20/10/2020 16:10:52             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_udp_l3src================
20/10/2020 16:10:52             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:10:52              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 16:10:52              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:10:52              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 16:10:52              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:10:52              dut.10.240.183.67: flow list 0
20/10/2020 16:10:52              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:10:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:54              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf48510 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:10:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:10:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xf48510', '0x0')]
20/10/2020 16:10:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:55              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf48510 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:10:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:10:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xf48510', '0x0')]
20/10/2020 16:10:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:56              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4fe91169 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:10:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:10:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x4fe91169', '0x9')]
20/10/2020 16:10:56             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:10:56              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:10:57              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:10:57              dut.10.240.183.67: flow list 0
20/10/2020 16:10:57              dut.10.240.183.67: 
20/10/2020 16:10:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:10:58              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:10:58             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:10:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:10:58             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_udp_l3src passed
20/10/2020 16:10:58              dut.10.240.183.67: flow flush 0
20/10/2020 16:10:58              dut.10.240.183.67: 
20/10/2020 16:10:58             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_udp_l3dst_l4src================
20/10/2020 16:10:58             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:10:58              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:10:58              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:10:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:10:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:10:58              dut.10.240.183.67: flow list 0
20/10/2020 16:10:58              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:10:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:00              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x88352eff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:00             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:11:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x88352eff', '0xf')]
20/10/2020 16:11:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:01              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xd7a9f83b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:01             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7a9f83b', '0xb')]
20/10/2020 16:11:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:02              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28bdaa80 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:02             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x28bdaa80', '0x0')]
20/10/2020 16:11:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:03              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x88352eff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:11:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x88352eff', '0xf')]
20/10/2020 16:11:03             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:11:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:11:04              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:11:04              dut.10.240.183.67: flow list 0
20/10/2020 16:11:04              dut.10.240.183.67: 
20/10/2020 16:11:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:05              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:05             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:11:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:11:05             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_udp_l3dst_l4src passed
20/10/2020 16:11:05              dut.10.240.183.67: flow flush 0
20/10/2020 16:11:05              dut.10.240.183.67: 
20/10/2020 16:11:05             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_udp_l3dst_l4dst================
20/10/2020 16:11:05             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:11:05              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:11:05              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:11:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:11:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:11:05              dut.10.240.183.67: flow list 0
20/10/2020 16:11:05              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:11:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:07              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x640d96d9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:07             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:11:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x640d96d9', '0x9')]
20/10/2020 16:11:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:08              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3b91401d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x3b91401d', '0xd')]
20/10/2020 16:11:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:09              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28bdaa80 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x28bdaa80', '0x0')]
20/10/2020 16:11:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:10              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x640d96d9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:10             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:11:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x640d96d9', '0x9')]
20/10/2020 16:11:10             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:11:10              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:11:11              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:11:11              dut.10.240.183.67: flow list 0
20/10/2020 16:11:11              dut.10.240.183.67: 
20/10/2020 16:11:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:12              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:12             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:11:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:11:12             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_udp_l3dst_l4dst passed
20/10/2020 16:11:12              dut.10.240.183.67: flow flush 0
20/10/2020 16:11:12              dut.10.240.183.67: 
20/10/2020 16:11:12             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_udp_l3src_l4src================
20/10/2020 16:11:12             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:11:12              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:11:12              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:11:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:11:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:11:12              dut.10.240.183.67: flow list 0
20/10/2020 16:11:12              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:11:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:14              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x73257c88 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:14             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:11:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x73257c88', '0x8')]
20/10/2020 16:11:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:15              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3c38e8f1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x3c38e8f1', '0x1')]
20/10/2020 16:11:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:16              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xd3adf8f7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xd3adf8f7', '0x7')]
20/10/2020 16:11:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:17              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x73257c88 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:17             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:11:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x73257c88', '0x8')]
20/10/2020 16:11:17             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:11:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:11:18              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:11:18              dut.10.240.183.67: flow list 0
20/10/2020 16:11:18              dut.10.240.183.67: 
20/10/2020 16:11:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:19              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:19             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:11:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:11:19             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_udp_l3src_l4src passed
20/10/2020 16:11:19              dut.10.240.183.67: flow flush 0
20/10/2020 16:11:19              dut.10.240.183.67: 
20/10/2020 16:11:19             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_udp_l3src_l4dst================
20/10/2020 16:11:19             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:11:19              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:11:19              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:11:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:11:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:11:19              dut.10.240.183.67: flow list 0
20/10/2020 16:11:20              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:11:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:21              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x9f1dc4ae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:21             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:11:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f1dc4ae', '0xe')]
20/10/2020 16:11:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:22              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xd00050d7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xd00050d7', '0x7')]
20/10/2020 16:11:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:23              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xd3adf8f7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xd3adf8f7', '0x7')]
20/10/2020 16:11:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:24              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x9f1dc4ae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:11:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f1dc4ae', '0xe')]
20/10/2020 16:11:24             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:11:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:11:25              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:11:25              dut.10.240.183.67: flow list 0
20/10/2020 16:11:25              dut.10.240.183.67: 
20/10/2020 16:11:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:26              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:26             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 16:11:26             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_udp_l3src_l4dst passed
20/10/2020 16:11:26              dut.10.240.183.67: flow flush 0
20/10/2020 16:11:26              dut.10.240.183.67: 
20/10/2020 16:11:26             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_udp_l4src================
20/10/2020 16:11:26             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:11:26              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 16:11:26              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:11:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 16:11:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:11:27              dut.10.240.183.67: flow list 0
20/10/2020 16:11:27              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:11:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:28              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xda23cd2b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:28             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:11:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xda23cd2b', '0xb')]
20/10/2020 16:11:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:29              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xb6746971 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xb6746971', '0x1')]
20/10/2020 16:11:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:30              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xda23cd2b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:30             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:11:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xda23cd2b', '0xb')]
20/10/2020 16:11:30             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:11:30              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:11:31              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:11:31              dut.10.240.183.67: flow list 0
20/10/2020 16:11:31              dut.10.240.183.67: 
20/10/2020 16:11:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:32              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:32             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:11:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:11:32             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_udp_l4src passed
20/10/2020 16:11:32              dut.10.240.183.67: flow flush 0
20/10/2020 16:11:32              dut.10.240.183.67: 
20/10/2020 16:11:32             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_udp_l4dst================
20/10/2020 16:11:32             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:11:32              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:11:32              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:11:32              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:11:32              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:11:32              dut.10.240.183.67: flow list 0
20/10/2020 16:11:33              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:11:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:34              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x5af3b215 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:34             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:11:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x5af3b215', '0x5')]
20/10/2020 16:11:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:35              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x36a4164f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:35             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x36a4164f', '0xf')]
20/10/2020 16:11:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:36              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x5af3b215 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:11:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x5af3b215', '0x5')]
20/10/2020 16:11:36             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:11:36              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:11:37              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:11:37              dut.10.240.183.67: flow list 0
20/10/2020 16:11:37              dut.10.240.183.67: 
20/10/2020 16:11:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:38              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:38             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 16:11:38             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_udp_l4dst passed
20/10/2020 16:11:38              dut.10.240.183.67: flow flush 0
20/10/2020 16:11:38              dut.10.240.183.67: 
20/10/2020 16:11:38             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv6_udp_all================
20/10/2020 16:11:38             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:11:38              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 16:11:38              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:11:38              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 16:11:38              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:11:38              dut.10.240.183.67: flow list 0
20/10/2020 16:11:38              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:11:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:40              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc39c8783 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:40             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:11:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xc39c8783', '0x3')]
20/10/2020 16:11:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:41              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x5dc7a32 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:41             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x5dc7a32', '0x2')]
20/10/2020 16:11:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:42              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3e2d1f99 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e2d1f99', '0x9')]
20/10/2020 16:11:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:43              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf298000 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:43             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xf298000', '0x0')]
20/10/2020 16:11:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:44              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x8c8113fa - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x8c8113fa', '0xa')]
20/10/2020 16:11:44             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:11:44              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:11:45              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:11:45              dut.10.240.183.67: flow list 0
20/10/2020 16:11:45              dut.10.240.183.67: 
20/10/2020 16:11:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:46              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:46             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:11:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:11:46             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv6_udp_all passed
20/10/2020 16:11:46              dut.10.240.183.67: flow flush 0
20/10/2020 16:11:46              dut.10.240.183.67: 
20/10/2020 16:11:46             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_udp_l3dst================
20/10/2020 16:11:46             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:11:46              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:11:46              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:11:46              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:11:47              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:11:47              dut.10.240.183.67: flow list 0
20/10/2020 16:11:47              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:11:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:48              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xfbe4d767 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:11:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbe4d767', '0x7')]
20/10/2020 16:11:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:49              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xa47801a3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xa47801a3', '0x3')]
20/10/2020 16:11:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:50              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xfbe4d767 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:11:50             TestCVLIAVFRSSGTPU: hash_infos: [('0xfbe4d767', '0x7')]
20/10/2020 16:11:50             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:11:50              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:11:51              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:11:51              dut.10.240.183.67: flow list 0
20/10/2020 16:11:51              dut.10.240.183.67: 
20/10/2020 16:11:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:52              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:52             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:11:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:11:52             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_udp_l3dst passed
20/10/2020 16:11:52              dut.10.240.183.67: flow flush 0
20/10/2020 16:11:52              dut.10.240.183.67: 
20/10/2020 16:11:52             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_udp_l3src================
20/10/2020 16:11:52             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:11:52              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 16:11:52              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:11:52              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 16:11:52              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:11:52              dut.10.240.183.67: flow list 0
20/10/2020 16:11:53              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:11:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:54              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf48510 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:11:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xf48510', '0x0')]
20/10/2020 16:11:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:55              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf48510 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:11:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xf48510', '0x0')]
20/10/2020 16:11:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:56              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4fe91169 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:11:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:11:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x4fe91169', '0x9')]
20/10/2020 16:11:56             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:11:56              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:11:57              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:11:57              dut.10.240.183.67: flow list 0
20/10/2020 16:11:57              dut.10.240.183.67: 
20/10/2020 16:11:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:11:58              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:11:58             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:11:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:11:58             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_udp_l3src passed
20/10/2020 16:11:58              dut.10.240.183.67: flow flush 0
20/10/2020 16:11:58              dut.10.240.183.67: 
20/10/2020 16:11:58             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_udp_l3dst_l4src================
20/10/2020 16:11:58             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:11:58              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:11:58              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:11:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:11:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:11:58              dut.10.240.183.67: flow list 0
20/10/2020 16:11:58              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:11:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:00              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x88352eff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:00             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:12:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x88352eff', '0xf')]
20/10/2020 16:12:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:01              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xd7a9f83b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:01             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7a9f83b', '0xb')]
20/10/2020 16:12:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:02              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28bdaa80 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:02             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x28bdaa80', '0x0')]
20/10/2020 16:12:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:03              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x88352eff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:12:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x88352eff', '0xf')]
20/10/2020 16:12:03             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:12:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:12:04              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:12:04              dut.10.240.183.67: flow list 0
20/10/2020 16:12:04              dut.10.240.183.67: 
20/10/2020 16:12:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:05              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:12:05             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:12:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:12:05             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_udp_l3dst_l4src passed
20/10/2020 16:12:05              dut.10.240.183.67: flow flush 0
20/10/2020 16:12:05              dut.10.240.183.67: 
20/10/2020 16:12:05             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_udp_l3dst_l4dst================
20/10/2020 16:12:05             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:12:05              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:12:05              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:12:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:12:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:12:05              dut.10.240.183.67: flow list 0
20/10/2020 16:12:05              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:12:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:07              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x640d96d9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:07             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:12:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x640d96d9', '0x9')]
20/10/2020 16:12:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:08              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3b91401d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:12:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x3b91401d', '0xd')]
20/10/2020 16:12:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:09              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28bdaa80 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x28bdaa80', '0x0')]
20/10/2020 16:12:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:10              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x640d96d9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:10             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:12:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x640d96d9', '0x9')]
20/10/2020 16:12:10             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:12:10              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:12:11              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:12:11              dut.10.240.183.67: flow list 0
20/10/2020 16:12:11              dut.10.240.183.67: 
20/10/2020 16:12:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:12              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:12:12             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:12:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:12:12             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_udp_l3dst_l4dst passed
20/10/2020 16:12:12              dut.10.240.183.67: flow flush 0
20/10/2020 16:12:12              dut.10.240.183.67: 
20/10/2020 16:12:12             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_udp_l3src_l4src================
20/10/2020 16:12:12             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:12:12              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:12:12              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:12:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:12:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:12:12              dut.10.240.183.67: flow list 0
20/10/2020 16:12:13              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:12:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:14              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x73257c88 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:14             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:12:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x73257c88', '0x8')]
20/10/2020 16:12:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:15              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3c38e8f1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x3c38e8f1', '0x1')]
20/10/2020 16:12:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:16              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xd3adf8f7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xd3adf8f7', '0x7')]
20/10/2020 16:12:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:17              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x73257c88 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:17             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:12:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x73257c88', '0x8')]
20/10/2020 16:12:17             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:12:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:12:18              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:12:18              dut.10.240.183.67: flow list 0
20/10/2020 16:12:18              dut.10.240.183.67: 
20/10/2020 16:12:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:19              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:12:19             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:12:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:12:19             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_udp_l3src_l4src passed
20/10/2020 16:12:19              dut.10.240.183.67: flow flush 0
20/10/2020 16:12:19              dut.10.240.183.67: 
20/10/2020 16:12:19             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_udp_l3src_l4dst================
20/10/2020 16:12:19             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:12:19              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:12:19              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:12:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:12:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:12:19              dut.10.240.183.67: flow list 0
20/10/2020 16:12:20              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:12:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:21              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x9f1dc4ae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:21             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:12:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f1dc4ae', '0xe')]
20/10/2020 16:12:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:22              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xd00050d7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xd00050d7', '0x7')]
20/10/2020 16:12:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:23              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xd3adf8f7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xd3adf8f7', '0x7')]
20/10/2020 16:12:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:24              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x9f1dc4ae - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:24             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:12:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f1dc4ae', '0xe')]
20/10/2020 16:12:24             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:12:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:12:25              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:12:25              dut.10.240.183.67: flow list 0
20/10/2020 16:12:25              dut.10.240.183.67: 
20/10/2020 16:12:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:26              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:12:26             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 16:12:26             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_udp_l3src_l4dst passed
20/10/2020 16:12:26              dut.10.240.183.67: flow flush 0
20/10/2020 16:12:26              dut.10.240.183.67: 
20/10/2020 16:12:26             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_udp_l4src================
20/10/2020 16:12:26             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:12:26              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 16:12:26              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:12:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 16:12:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:12:27              dut.10.240.183.67: flow list 0
20/10/2020 16:12:27              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:12:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:28              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xda23cd2b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:28             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:12:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xda23cd2b', '0xb')]
20/10/2020 16:12:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:29              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xb6746971 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xb6746971', '0x1')]
20/10/2020 16:12:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:30              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xda23cd2b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:30             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:12:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xda23cd2b', '0xb')]
20/10/2020 16:12:30             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:12:30              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:12:31              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:12:31              dut.10.240.183.67: flow list 0
20/10/2020 16:12:31              dut.10.240.183.67: 
20/10/2020 16:12:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:32              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:12:32             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:12:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:12:32             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_udp_l4src passed
20/10/2020 16:12:32              dut.10.240.183.67: flow flush 0
20/10/2020 16:12:32              dut.10.240.183.67: 
20/10/2020 16:12:32             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_udp_l4dst================
20/10/2020 16:12:32             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:12:32              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:12:32              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:12:32              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:12:32              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:12:32              dut.10.240.183.67: flow list 0
20/10/2020 16:12:32              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:12:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:34              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x5af3b215 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:12:34             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:12:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x5af3b215', '0x5')]
20/10/2020 16:12:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:35              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x36a4164f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:35             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x36a4164f', '0xf')]
20/10/2020 16:12:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:36              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x5af3b215 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:12:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:12:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x5af3b215', '0x5')]
20/10/2020 16:12:36             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:12:36              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:12:37              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:12:37              dut.10.240.183.67: flow list 0
20/10/2020 16:12:37              dut.10.240.183.67: 
20/10/2020 16:12:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:38              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:12:38             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 16:12:38             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_udp_l4dst passed
20/10/2020 16:12:38              dut.10.240.183.67: flow flush 0
20/10/2020 16:12:38              dut.10.240.183.67: 
20/10/2020 16:12:38             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv6_udp_all================
20/10/2020 16:12:38             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:12:38              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 16:12:38              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:12:38              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 16:12:38              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:12:38              dut.10.240.183.67: flow list 0
20/10/2020 16:12:38              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:12:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:40              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc39c8783 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:12:40             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:12:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xc39c8783', '0x3')]
20/10/2020 16:12:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:41              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x5dc7a32 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:12:41             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x5dc7a32', '0x2')]
20/10/2020 16:12:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:42              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3e2d1f99 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x3e2d1f99', '0x9')]
20/10/2020 16:12:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:43              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf298000 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:43             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xf298000', '0x0')]
20/10/2020 16:12:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:44              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x8c8113fa - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:12:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:12:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x8c8113fa', '0xa')]
20/10/2020 16:12:44             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:12:44              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:12:45              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:12:45              dut.10.240.183.67: flow list 0
20/10/2020 16:12:45              dut.10.240.183.67: 
20/10/2020 16:12:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:12:46              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6d2c1bc6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:12:46             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:12:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d2c1bc6', '0x6')]
20/10/2020 16:12:46             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv6_udp_all passed
20/10/2020 16:12:46              dut.10.240.183.67: flow flush 0
20/10/2020 16:12:46              dut.10.240.183.67: 
20/10/2020 16:12:46             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_dl_ipv6_udp_l3dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_udp_l3src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_udp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_udp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_udp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_udp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_udp_l4src': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_udp_l4dst': 'passed', 'mac_ipv6_gtpu_eh_dl_ipv6_udp_all': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_udp_l3dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_udp_l3src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_udp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_udp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_udp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_udp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_udp_l4src': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_udp_l4dst': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv6_udp_all': 'passed'}
20/10/2020 16:12:46             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:12:46             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_udp Result PASSED:
20/10/2020 16:12:46              dut.10.240.183.67: flow flush 0
20/10/2020 16:12:48              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:12:48              dut.10.240.183.67: clear port stats all
20/10/2020 16:12:49              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:12:49              dut.10.240.183.67: stop
20/10/2020 16:12:49              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Done.
20/10/2020 16:12:49             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_udp_symmetric Begin
20/10/2020 16:12:49              dut.10.240.183.67: 
20/10/2020 16:12:49                         tester: 
20/10/2020 16:12:49              dut.10.240.183.67: start
20/10/2020 16:12:49              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:12:49              dut.10.240.183.67: quit
20/10/2020 16:12:51              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

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

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

Done.

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

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:12:51              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:12:52              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

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

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:13:02              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:13:02              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:13:02              dut.10.240.183.67: set verbose 1
20/10/2020 16:13:02              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:13:02              dut.10.240.183.67: show port info all
20/10/2020 16:13:02              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:13:02              dut.10.240.183.67: start
20/10/2020 16:13:02              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:13:02             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_dl_ipv4_tcp_symmetric================
20/10/2020 16:13:02             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:13:02              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:13:02              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:13:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 0 / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:13:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:13:02              dut.10.240.183.67: flow list 0
20/10/2020 16:13:02              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:13:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:04              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x7608fa39 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:04             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:13:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x7608fa39', '0x9')]
20/10/2020 16:13:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:05              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x7608fa39 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x7608fa39', '0x9')]
20/10/2020 16:13:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:06              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x7608fa39 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x7608fa39', '0x9')]
20/10/2020 16:13:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:07              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x7608fa39 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:07             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x7608fa39', '0x9')]
20/10/2020 16:13:07             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:13:07              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:13:08              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:13:08              dut.10.240.183.67: flow list 0
20/10/2020 16:13:08              dut.10.240.183.67: 
20/10/2020 16:13:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:09              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:09             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:13:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2')]
20/10/2020 16:13:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:10              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:10             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:13:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2')]
20/10/2020 16:13:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:11              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:11             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:13:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2')]
20/10/2020 16:13:11             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_dl_ipv4_tcp_symmetric passed
20/10/2020 16:13:12              dut.10.240.183.67: flow flush 0
20/10/2020 16:13:12              dut.10.240.183.67: 
20/10/2020 16:13:12             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ul_ipv4_tcp_symmetric================
20/10/2020 16:13:12             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:13:12              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:13:12              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:13:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc pdu_t is 1 / ipv6 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:13:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:13:12              dut.10.240.183.67: flow list 0
20/10/2020 16:13:12              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 TCP => RSS
20/10/2020 16:13:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:13              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x7608fa39 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:13             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:13:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x7608fa39', '0x9')]
20/10/2020 16:13:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:14              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x7608fa39 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:14             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x7608fa39', '0x9')]
20/10/2020 16:13:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:15              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x7608fa39 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:15             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x7608fa39', '0x9')]
20/10/2020 16:13:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:16              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x7608fa39 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:16             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x7608fa39', '0x9')]
20/10/2020 16:13:16             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:13:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:13:17              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:13:17              dut.10.240.183.67: flow list 0
20/10/2020 16:13:17              dut.10.240.183.67: 
20/10/2020 16:13:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:19              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:19             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:13:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2')]
20/10/2020 16:13:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:20              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:20             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:13:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2')]
20/10/2020 16:13:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:21              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=622 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:21             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:13:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2')]
20/10/2020 16:13:21             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ul_ipv4_tcp_symmetric passed
20/10/2020 16:13:21              dut.10.240.183.67: flow flush 0
20/10/2020 16:13:21              dut.10.240.183.67: 
20/10/2020 16:13:21             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_dl_ipv4_tcp_symmetric': 'passed', 'mac_ipv6_gtpu_eh_ul_ipv4_tcp_symmetric': 'passed'}
20/10/2020 16:13:21             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:13:21             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_udp_symmetric Result PASSED:
20/10/2020 16:13:21              dut.10.240.183.67: flow flush 0
20/10/2020 16:13:22              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:13:22              dut.10.240.183.67: clear port stats all
20/10/2020 16:13:23              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:13:23              dut.10.240.183.67: stop
20/10/2020 16:13:23              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

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

  ------- Forward Stats for RX Port= 0/Queue= 9 -> TX Port= 0/Queue= 9 -------
  RX-packets: 8              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:13:23             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_udp_without_ul_dl Begin
20/10/2020 16:13:23              dut.10.240.183.67: 
20/10/2020 16:13:23                         tester: 
20/10/2020 16:13:23              dut.10.240.183.67: start
20/10/2020 16:13:23              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:13:23             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3src================
20/10/2020 16:13:23             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:13:23              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 16:13:24              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:13:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 16:13:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:13:24              dut.10.240.183.67: flow list 0
20/10/2020 16:13:24              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:13:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:25              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xe8b16995 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:25             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:13:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xe8b16995', '0x5')]
20/10/2020 16:13:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:26              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xe8b16995 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:26             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xe8b16995', '0x5')]
20/10/2020 16:13:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:27              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x12dbc48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:13:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x12dbc48', '0x8')]
20/10/2020 16:13:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:28              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xe8b16995 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:13:28             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xe8b16995', '0x5')]
20/10/2020 16:13:28             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:13:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:13:29              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:13:29              dut.10.240.183.67: flow list 0
20/10/2020 16:13:29              dut.10.240.183.67: 
20/10/2020 16:13:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:30              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:30             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:13:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2'), ('0x28cc6262', '0x2')]
20/10/2020 16:13:30             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3src passed
20/10/2020 16:13:30              dut.10.240.183.67: flow flush 0
20/10/2020 16:13:31              dut.10.240.183.67: 
20/10/2020 16:13:31             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3dst================
20/10/2020 16:13:31             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:13:31              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:13:31              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:13:31              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:13:31              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:13:31              dut.10.240.183.67: flow list 0
20/10/2020 16:13:31              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:13:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:32              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x7640af40 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:32             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:13:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x7640af40', '0x0')]
20/10/2020 16:13:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:33              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x7640af40 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:33             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x7640af40', '0x0')]
20/10/2020 16:13:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:34              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3cff9c10 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:13:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x3cff9c10', '0x0')]
20/10/2020 16:13:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:35              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x7640af40 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:35             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x7640af40', '0x0')]
20/10/2020 16:13:35             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:13:35              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:13:36              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:13:36              dut.10.240.183.67: flow list 0
20/10/2020 16:13:36              dut.10.240.183.67: 
20/10/2020 16:13:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:38              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:38             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:13:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2'), ('0x28cc6262', '0x2')]
20/10/2020 16:13:38             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3dst passed
20/10/2020 16:13:38              dut.10.240.183.67: flow flush 0
20/10/2020 16:13:38              dut.10.240.183.67: 
20/10/2020 16:13:38             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3src_l4dst================
20/10/2020 16:13:38             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:13:38              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:13:38              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:13:38              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:13:38              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:13:38              dut.10.240.183.67: flow list 0
20/10/2020 16:13:38              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:13:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:39              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x9ce1dd22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:39             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:13:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x9ce1dd22', '0x2')]
20/10/2020 16:13:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:40              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xb86e3cc1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:40             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:13:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xb86e3cc1', '0x1')]
20/10/2020 16:13:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:41              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x757d08ff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:41             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:13:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x757d08ff', '0xf')]
20/10/2020 16:13:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:42              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x9ce1dd22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:13:42             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x9ce1dd22', '0x2')]
20/10/2020 16:13:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:43              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x9ce1dd22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:13:43             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x9ce1dd22', '0x2')]
20/10/2020 16:13:43             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:13:43              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:13:44              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:13:44              dut.10.240.183.67: flow list 0
20/10/2020 16:13:45              dut.10.240.183.67: 
20/10/2020 16:13:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:46              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:46             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:13:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2'), ('0x28cc6262', '0x2')]
20/10/2020 16:13:46             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3src_l4dst passed
20/10/2020 16:13:46              dut.10.240.183.67: flow flush 0
20/10/2020 16:13:46              dut.10.240.183.67: 
20/10/2020 16:13:46             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3dst_l4src================
20/10/2020 16:13:46             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:13:46              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:13:46              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:13:46              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:13:46              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:13:46              dut.10.240.183.67: flow list 0
20/10/2020 16:13:46              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:13:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:47              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3087cc22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:47             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:13:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x3087cc22', '0x2')]
20/10/2020 16:13:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:48              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xbfd411fe - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:13:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xbfd411fe', '0xe')]
20/10/2020 16:13:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:49              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x7a38ff72 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:13:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x7a38ff72', '0x2')]
20/10/2020 16:13:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:50              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3087cc22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:13:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x3087cc22', '0x2')]
20/10/2020 16:13:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:51              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3087cc22 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:13:51             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x3087cc22', '0x2')]
20/10/2020 16:13:51             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:13:51              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:13:53              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:13:53              dut.10.240.183.67: flow list 0
20/10/2020 16:13:53              dut.10.240.183.67: 
20/10/2020 16:13:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:54              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:13:54             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:13:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2'), ('0x28cc6262', '0x2')]
20/10/2020 16:13:54             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3dst_l4src passed
20/10/2020 16:13:54              dut.10.240.183.67: flow flush 0
20/10/2020 16:13:54              dut.10.240.183.67: 
20/10/2020 16:13:54             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3src_l4src================
20/10/2020 16:13:54             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:13:54              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:13:54              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:13:54              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:13:54              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:13:54              dut.10.240.183.67: flow list 0
20/10/2020 16:13:54              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:13:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:55              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xae760af7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:55             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:13:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xae760af7', '0x7')]
20/10/2020 16:13:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:56              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x2125d72b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:13:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x2125d72b', '0xb')]
20/10/2020 16:13:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:57              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x47eadf2a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:13:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x47eadf2a', '0xa')]
20/10/2020 16:13:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:13:59              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xae760af7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:13:59             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:13:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xae760af7', '0x7')]
20/10/2020 16:13:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:00              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xae760af7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:00             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xae760af7', '0x7')]
20/10/2020 16:14:00             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:14:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:14:01              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:14:01              dut.10.240.183.67: flow list 0
20/10/2020 16:14:01              dut.10.240.183.67: 
20/10/2020 16:14:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:02              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:14:02             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:14:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2'), ('0x28cc6262', '0x2')]
20/10/2020 16:14:02             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3src_l4src passed
20/10/2020 16:14:02              dut.10.240.183.67: flow flush 0
20/10/2020 16:14:02              dut.10.240.183.67: 
20/10/2020 16:14:02             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3dst_l4dst================
20/10/2020 16:14:02             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:14:02              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:14:02              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:14:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:14:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:14:02              dut.10.240.183.67: flow list 0
20/10/2020 16:14:02              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:14:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:03              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x2101bf7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:03             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:14:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x2101bf7', '0x7')]
20/10/2020 16:14:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:04              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x269ffa14 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:14:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:14:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x269ffa14', '0x4')]
20/10/2020 16:14:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:06              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x48af28a7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:06             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:14:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x48af28a7', '0x7')]
20/10/2020 16:14:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:07              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x2101bf7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:07             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x2101bf7', '0x7')]
20/10/2020 16:14:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:08              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x2101bf7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:08             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x2101bf7', '0x7')]
20/10/2020 16:14:08             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:14:08              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:14:09              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:14:09              dut.10.240.183.67: flow list 0
20/10/2020 16:14:09              dut.10.240.183.67: 
20/10/2020 16:14:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:10              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:14:10             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:14:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2'), ('0x28cc6262', '0x2')]
20/10/2020 16:14:10             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3dst_l4dst passed
20/10/2020 16:14:10              dut.10.240.183.67: flow flush 0
20/10/2020 16:14:10              dut.10.240.183.67: 
20/10/2020 16:14:10             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l4src_only================
20/10/2020 16:14:10             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:14:10              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 16:14:10              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:14:10              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 16:14:10              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:14:10              dut.10.240.183.67: flow list 0
20/10/2020 16:14:10              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:14:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:12              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x8d08010d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:14:12             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:14:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x8d08010d', '0xd')]
20/10/2020 16:14:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:13              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xede2055b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:13             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:14:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xede2055b', '0xb')]
20/10/2020 16:14:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:14              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x8d08010d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:14:14             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x8d08010d', '0xd')]
20/10/2020 16:14:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:15              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x8d08010d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:14:15             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x8d08010d', '0xd')]
20/10/2020 16:14:15             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:14:15              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:14:16              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:14:16              dut.10.240.183.67: flow list 0
20/10/2020 16:14:16              dut.10.240.183.67: 
20/10/2020 16:14:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:17              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:14:17             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:14:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2'), ('0x28cc6262', '0x2')]
20/10/2020 16:14:17             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l4src_only passed
20/10/2020 16:14:17              dut.10.240.183.67: flow flush 0
20/10/2020 16:14:17              dut.10.240.183.67: 
20/10/2020 16:14:17             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l4dst_only================
20/10/2020 16:14:17             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:14:17              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:14:17              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:14:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:14:17              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:14:17              dut.10.240.183.67: flow list 0
20/10/2020 16:14:17              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:14:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:19              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x27ed48b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:19             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:14:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x27ed48b', '0xb')]
20/10/2020 16:14:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:20              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x2a596f98 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:14:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x2a596f98', '0x8')]
20/10/2020 16:14:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:21              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x27ed48b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x27ed48b', '0xb')]
20/10/2020 16:14:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:22              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x27ed48b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:22             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x27ed48b', '0xb')]
20/10/2020 16:14:22             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:14:22              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:14:23              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:14:23              dut.10.240.183.67: flow list 0
20/10/2020 16:14:23              dut.10.240.183.67: 
20/10/2020 16:14:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:24              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:14:24             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:14:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2'), ('0x28cc6262', '0x2')]
20/10/2020 16:14:24             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l4dst_only passed
20/10/2020 16:14:24              dut.10.240.183.67: flow flush 0
20/10/2020 16:14:24              dut.10.240.183.67: 
20/10/2020 16:14:24             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp================
20/10/2020 16:14:24             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:14:24              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 16:14:24              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:14:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 16:14:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:14:24              dut.10.240.183.67: flow list 0
20/10/2020 16:14:25              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:14:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:26              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xfe32f693 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:14:26             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:14:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xfe32f693', '0x3')]
20/10/2020 16:14:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:27              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x21107f9a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:14:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x21107f9a', '0xa')]
20/10/2020 16:14:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:28              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x773b40fe - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:14:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x773b40fe', '0xe')]
20/10/2020 16:14:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:29              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf8132a11 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:14:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xf8132a11', '0x1')]
20/10/2020 16:14:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:30              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x17ae234e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:14:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x17ae234e', '0xe')]
20/10/2020 16:14:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:31              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xfe32f693 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:14:31             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xfe32f693', '0x3')]
20/10/2020 16:14:31             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:14:31              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:14:32              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:14:32              dut.10.240.183.67: flow list 0
20/10/2020 16:14:32              dut.10.240.183.67: 
20/10/2020 16:14:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:34              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x28cc6262 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:14:34             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:14:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x28cc6262', '0x2'), ('0x28cc6262', '0x2')]
20/10/2020 16:14:34             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp passed
20/10/2020 16:14:34              dut.10.240.183.67: flow flush 0
20/10/2020 16:14:34              dut.10.240.183.67: 
20/10/2020 16:14:34             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l4src_only': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp_l4dst_only': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_udp': 'passed'}
20/10/2020 16:14:34             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:14:34             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_udp_without_ul_dl Result PASSED:
20/10/2020 16:14:34              dut.10.240.183.67: flow flush 0
20/10/2020 16:14:35              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:14:35              dut.10.240.183.67: clear port stats all
20/10/2020 16:14:36              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:14:36              dut.10.240.183.67: stop
20/10/2020 16:14:36              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 0/Queue= 1 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  RX-packets: 25             TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 0/Queue= 3 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/Queue= 5 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 7 -> TX Port= 0/Queue= 7 -------
  RX-packets: 7              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 0/Queue=11 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 0/Queue=14 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 0/Queue=15 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:14:36             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_udp_without_ul_dl_symmetric Begin
20/10/2020 16:14:36              dut.10.240.183.67: 
20/10/2020 16:14:36                         tester: 
20/10/2020 16:14:36              dut.10.240.183.67: start
20/10/2020 16:14:36              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:14:36              dut.10.240.183.67: quit
20/10/2020 16:14:38              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:14:38              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:14:39              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:14:49              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:14:49              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:14:49              dut.10.240.183.67: set verbose 1
20/10/2020 16:14:49              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:14:49              dut.10.240.183.67: show port info all
20/10/2020 16:14:49              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:14:49              dut.10.240.183.67: start
20/10/2020 16:14:49              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:14:49             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ipv6_udp_without_ul_dl_symmetric================
20/10/2020 16:14:49             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:14:49              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss func symmetric_toeplitz types ipv6-udp end key_len 0 queues end / end
20/10/2020 16:14:49              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:14:49              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / udp / end actions rss func symmetric_toeplitz types ipv6-udp end key_len 0 queues end / end
20/10/2020 16:14:49              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:14:49              dut.10.240.183.67: flow list 0
20/10/2020 16:14:49              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 UDP => RSS
20/10/2020 16:14:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:51              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xa0da1f09 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:51             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-dl'}

20/10/2020 16:14:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xa0da1f09', '0x9')]
20/10/2020 16:14:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:52              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xa0da1f09 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xa0da1f09', '0x9')]
20/10/2020 16:14:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:53              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xa0da1f09 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:53             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xa0da1f09', '0x9')]
20/10/2020 16:14:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:54              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xa0da1f09 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xa0da1f09', '0x9')]
20/10/2020 16:14:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:55              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xa0da1f09 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:55             TestCVLIAVFRSSGTPU: action: {'save_hash': 'udp-ul'}

20/10/2020 16:14:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xa0da1f09', '0x9')]
20/10/2020 16:14:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:56              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xa0da1f09 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:56             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xa0da1f09', '0x9')]
20/10/2020 16:14:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:57              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xa0da1f09 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:57             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xa0da1f09', '0x9')]
20/10/2020 16:14:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:14:58              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xa0da1f09 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:14:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:14:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xa0da1f09', '0x9')]
20/10/2020 16:14:58             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:14:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:14:59              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:14:59              dut.10.240.183.67: flow list 0
20/10/2020 16:15:00              dut.10.240.183.67: 
20/10/2020 16:15:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:01              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:01             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:15:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f6f4b0f', '0xf')]
20/10/2020 16:15:01             TestCVLIAVFRSSGTPU: action: udp-dl

20/10/2020 16:15:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:02              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:02             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:15:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f6f4b0f', '0xf')]
20/10/2020 16:15:02             TestCVLIAVFRSSGTPU: action: udp-ul

20/10/2020 16:15:02             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ipv6_udp_without_ul_dl_symmetric passed
20/10/2020 16:15:02              dut.10.240.183.67: flow flush 0
20/10/2020 16:15:02              dut.10.240.183.67: 
20/10/2020 16:15:02             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_ipv6_udp_without_ul_dl_symmetric': 'passed'}
20/10/2020 16:15:02             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:15:02             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_udp_without_ul_dl_symmetric Result PASSED:
20/10/2020 16:15:02              dut.10.240.183.67: flow flush 0
20/10/2020 16:15:03              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:15:03              dut.10.240.183.67: clear port stats all
20/10/2020 16:15:04              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:15:04              dut.10.240.183.67: stop
20/10/2020 16:15:04              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 9 -> TX Port= 0/Queue= 9 -------
  RX-packets: 8              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 0/Queue=15 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:15:04             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_without_ul_dl Begin
20/10/2020 16:15:04              dut.10.240.183.67: 
20/10/2020 16:15:04                         tester: 
20/10/2020 16:15:04              dut.10.240.183.67: start
20/10/2020 16:15:04              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:15:04             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_l3dst================
20/10/2020 16:15:04             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:15:04              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:15:05              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:15:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:15:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:15:05              dut.10.240.183.67: flow list 0
20/10/2020 16:15:05              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 16:15:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:06              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x59cb6e28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:15:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x59cb6e28', '0x8')]
20/10/2020 16:15:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:07              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x51f0f6be - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x51f0f6be', '0xe')]
20/10/2020 16:15:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:08              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x59cb6e28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:08             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:15:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x59cb6e28', '0x8')]
20/10/2020 16:15:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:09              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x59cb6e28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:09             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:15:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x59cb6e28', '0x8')]
20/10/2020 16:15:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:10              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x51f0f6be - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:10             TestCVLIAVFRSSGTPU: hash_infos: [('0x51f0f6be', '0xe')]
20/10/2020 16:15:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:11              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x59cb6e28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:11             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:15:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x59cb6e28', '0x8')]
20/10/2020 16:15:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:12              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x59cb6e28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:12             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:15:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x59cb6e28', '0x8')]
20/10/2020 16:15:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:14              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x51f0f6be - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x51f0f6be', '0xe')]
20/10/2020 16:15:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:15              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x59cb6e28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:15             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:15:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x59cb6e28', '0x8')]
20/10/2020 16:15:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:16              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x59cb6e28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:16             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:15:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x59cb6e28', '0x8')]
20/10/2020 16:15:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:17              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x51f0f6be - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x51f0f6be', '0xe')]
20/10/2020 16:15:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:18              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x59cb6e28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:15:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x59cb6e28', '0x8')]
20/10/2020 16:15:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:19              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x59cb6e28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:19             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:15:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x59cb6e28', '0x8')]
20/10/2020 16:15:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:20              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x51f0f6be - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:20             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x51f0f6be', '0xe')]
20/10/2020 16:15:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:21              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x59cb6e28 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:15:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x59cb6e28', '0x8')]
20/10/2020 16:15:21             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:15:21              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:15:22              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:15:22              dut.10.240.183.67: flow list 0
20/10/2020 16:15:23              dut.10.240.183.67: 
20/10/2020 16:15:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:24              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:24             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:15:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f6f4b0f', '0xf'), ('0x3f6f4b0f', '0xf'), ('0x3f6f4b0f', '0xf'), ('0x3f6f4b0f', '0xf'), ('0x3f6f4b0f', '0xf')]
20/10/2020 16:15:24             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_l3dst passed
20/10/2020 16:15:24              dut.10.240.183.67: flow flush 0
20/10/2020 16:15:24              dut.10.240.183.67: 
20/10/2020 16:15:24             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_l3src================
20/10/2020 16:15:24             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:15:24              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 16:15:24              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:15:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 16:15:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:15:24              dut.10.240.183.67: flow list 0
20/10/2020 16:15:24              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 16:15:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:25              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xe324bcf9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:25             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:15:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xe324bcf9', '0x9')]
20/10/2020 16:15:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:26              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xf1620fb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1620fb', '0xb')]
20/10/2020 16:15:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:27              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xe324bcf9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:27             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:15:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xe324bcf9', '0x9')]
20/10/2020 16:15:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:28              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xe324bcf9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:28             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:15:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xe324bcf9', '0x9')]
20/10/2020 16:15:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:29              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xf1620fb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1620fb', '0xb')]
20/10/2020 16:15:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:31              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xe324bcf9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:31             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:15:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xe324bcf9', '0x9')]
20/10/2020 16:15:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:32              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xe324bcf9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:32             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:15:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xe324bcf9', '0x9')]
20/10/2020 16:15:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:33              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf1620fb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1620fb', '0xb')]
20/10/2020 16:15:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:34              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xe324bcf9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:15:34             TestCVLIAVFRSSGTPU: hash_infos: [('0xe324bcf9', '0x9')]
20/10/2020 16:15:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:35              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xe324bcf9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:15:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xe324bcf9', '0x9')]
20/10/2020 16:15:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:36              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf1620fb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:36             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1620fb', '0xb')]
20/10/2020 16:15:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:37              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xe324bcf9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:15:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xe324bcf9', '0x9')]
20/10/2020 16:15:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:38              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xe324bcf9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:15:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xe324bcf9', '0x9')]
20/10/2020 16:15:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:39              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf1620fb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:39             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1620fb', '0xb')]
20/10/2020 16:15:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:41              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xe324bcf9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:41             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:15:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xe324bcf9', '0x9')]
20/10/2020 16:15:41             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:15:41              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:15:42              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:15:42              dut.10.240.183.67: flow list 0
20/10/2020 16:15:42              dut.10.240.183.67: 
20/10/2020 16:15:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:43              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:15:43             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:15:43             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f6f4b0f', '0xf'), ('0x3f6f4b0f', '0xf'), ('0x3f6f4b0f', '0xf'), ('0x3f6f4b0f', '0xf'), ('0x3f6f4b0f', '0xf')]
20/10/2020 16:15:43             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_l3src passed
20/10/2020 16:15:43              dut.10.240.183.67: flow flush 0
20/10/2020 16:15:43              dut.10.240.183.67: 
20/10/2020 16:15:43             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_without_ul_dl_ipv6_all================
20/10/2020 16:15:43             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:15:43              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 16:15:43              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:15:43              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 16:15:43              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:15:43              dut.10.240.183.67: flow list 0
20/10/2020 16:15:43              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 16:15:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:44              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x3ae495f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:15:44             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:15:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ae495f6', '0x6')]
20/10/2020 16:15:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:45              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x159343c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:15:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x159343c6', '0x6')]
20/10/2020 16:15:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:46              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd6d609f4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:15:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xd6d609f4', '0x4')]
20/10/2020 16:15:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:48              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xf9a1dfc4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:15:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9a1dfc4', '0x4')]
20/10/2020 16:15:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:49              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x3ae495f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:15:49             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:15:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ae495f6', '0x6')]
20/10/2020 16:15:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:50              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x3ae495f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:15:50             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:15:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ae495f6', '0x6')]
20/10/2020 16:15:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:51              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x159343c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:15:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x159343c6', '0x6')]
20/10/2020 16:15:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:52              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xd6d609f4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:15:52             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xd6d609f4', '0x4')]
20/10/2020 16:15:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:53              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xf9a1dfc4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:15:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9a1dfc4', '0x4')]
20/10/2020 16:15:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:54              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x3ae495f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:15:54             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:15:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ae495f6', '0x6')]
20/10/2020 16:15:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:55              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3ae495f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:15:55             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:15:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ae495f6', '0x6')]
20/10/2020 16:15:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:56              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x159343c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:15:56             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x159343c6', '0x6')]
20/10/2020 16:15:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:57              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xd6d609f4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:15:58             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xd6d609f4', '0x4')]
20/10/2020 16:15:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:15:59              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf9a1dfc4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:15:59             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:15:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9a1dfc4', '0x4')]
20/10/2020 16:15:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:00              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3ae495f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:16:00             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:16:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ae495f6', '0x6')]
20/10/2020 16:16:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:01              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3ae495f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:01             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:16:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ae495f6', '0x6')]
20/10/2020 16:16:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:02              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x159343c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:02             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:16:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x159343c6', '0x6')]
20/10/2020 16:16:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:03              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xd6d609f4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:16:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xd6d609f4', '0x4')]
20/10/2020 16:16:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:04              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf9a1dfc4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:16:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9a1dfc4', '0x4')]
20/10/2020 16:16:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:05              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3ae495f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:16:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:16:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ae495f6', '0x6')]
20/10/2020 16:16:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:06              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3ae495f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:16:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ae495f6', '0x6')]
20/10/2020 16:16:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:07              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x159343c6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:16:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x159343c6', '0x6')]
20/10/2020 16:16:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:09              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xd6d609f4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:16:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xd6d609f4', '0x4')]
20/10/2020 16:16:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:10              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf9a1dfc4 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:10             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:16:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xf9a1dfc4', '0x4')]
20/10/2020 16:16:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:11              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3ae495f6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:16:11             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:16:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ae495f6', '0x6')]
20/10/2020 16:16:11             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:16:11              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:16:12              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:16:12              dut.10.240.183.67: flow list 0
20/10/2020 16:16:12              dut.10.240.183.67: 
20/10/2020 16:16:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:13              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3f6f4b0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:16:13             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:16:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x3f6f4b0f', '0xf'), ('0x3f6f4b0f', '0xf'), ('0x3f6f4b0f', '0xf'), ('0x3f6f4b0f', '0xf'), ('0x3f6f4b0f', '0xf')]
20/10/2020 16:16:13             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_without_ul_dl_ipv6_all passed
20/10/2020 16:16:13              dut.10.240.183.67: flow flush 0
20/10/2020 16:16:13              dut.10.240.183.67: 
20/10/2020 16:16:13             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_l3dst': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_l3src': 'passed', 'mac_ipv6_gtpu_eh_without_ul_dl_ipv6_all': 'passed'}
20/10/2020 16:16:13             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:16:13             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_without_ul_dl Result PASSED:
20/10/2020 16:16:13              dut.10.240.183.67: flow flush 0
20/10/2020 16:16:14              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:16:14              dut.10.240.183.67: clear port stats all
20/10/2020 16:16:16              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:16:16              dut.10.240.183.67: stop
20/10/2020 16:16:16              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  RX-packets: 10             TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  RX-packets: 15             TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  RX-packets: 10             TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 9 -> TX Port= 0/Queue= 9 -------
  RX-packets: 10             TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 0/Queue=11 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 0/Queue=14 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 0/Queue=15 -------
  RX-packets: 15             TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:16:16             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_without_ul_dl_symmetric Begin
20/10/2020 16:16:16              dut.10.240.183.67: 
20/10/2020 16:16:16                         tester: 
20/10/2020 16:16:16              dut.10.240.183.67: start
20/10/2020 16:16:16              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:16:16              dut.10.240.183.67: quit
20/10/2020 16:16:17              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:16:17              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:16:19              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:16:29              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:16:29              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:16:29              dut.10.240.183.67: set verbose 1
20/10/2020 16:16:29              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:16:29              dut.10.240.183.67: show port info all
20/10/2020 16:16:29              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:16:29              dut.10.240.183.67: start
20/10/2020 16:16:29              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:16:29             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_eh_ipv6_without_ul_dl_symmetric================
20/10/2020 16:16:29             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:16:29              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 16:16:29              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:16:29              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / gtp_psc / ipv6 / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 16:16:29              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:16:29              dut.10.240.183.67: flow list 0
20/10/2020 16:16:29              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU GTP_PSC IPV6 => RSS
20/10/2020 16:16:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:30              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x544ea0d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:30             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 16:16:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x544ea0d5', '0x5')]
20/10/2020 16:16:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:31              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0x544ea0d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:31             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:16:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x544ea0d5', '0x5')]
20/10/2020 16:16:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:32              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x544ea0d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:32             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 16:16:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x544ea0d5', '0x5')]
20/10/2020 16:16:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:33              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x544ea0d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:33             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:16:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x544ea0d5', '0x5')]
20/10/2020 16:16:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:35              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x544ea0d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:35             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 16:16:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x544ea0d5', '0x5')]
20/10/2020 16:16:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:36              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x544ea0d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:36             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:16:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x544ea0d5', '0x5')]
20/10/2020 16:16:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:37              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x544ea0d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:37             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 16:16:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x544ea0d5', '0x5')]
20/10/2020 16:16:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:38              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x544ea0d5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:38             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:16:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x544ea0d5', '0x5')]
20/10/2020 16:16:38             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:16:38              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:16:39              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:16:39              dut.10.240.183.67: flow list 0
20/10/2020 16:16:39              dut.10.240.183.67: 
20/10/2020 16:16:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:40              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=602 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:16:40             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 16:16:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xfc4d3dba', '0xa')]
20/10/2020 16:16:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:41              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:16:41             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 16:16:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xfc4d3dba', '0xa')]
20/10/2020 16:16:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:42              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:16:42             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 16:16:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xfc4d3dba', '0xa')]
20/10/2020 16:16:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:44              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:16:44             TestCVLIAVFRSSGTPU: action: ipv4-udp

20/10/2020 16:16:44             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:16:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xfc4d3dba', '0xa')]
20/10/2020 16:16:44             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_eh_ipv6_without_ul_dl_symmetric passed
20/10/2020 16:16:44              dut.10.240.183.67: flow flush 0
20/10/2020 16:16:44              dut.10.240.183.67: 
20/10/2020 16:16:44             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_eh_ipv6_without_ul_dl_symmetric': 'passed'}
20/10/2020 16:16:44             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:16:44             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_eh_ipv6_without_ul_dl_symmetric Result PASSED:
20/10/2020 16:16:44              dut.10.240.183.67: flow flush 0
20/10/2020 16:16:45              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:16:45              dut.10.240.183.67: clear port stats all
20/10/2020 16:16:46              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:16:46              dut.10.240.183.67: stop
20/10/2020 16:16:46              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/Queue= 5 -------
  RX-packets: 8              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:16:46             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv4 Begin
20/10/2020 16:16:46              dut.10.240.183.67: 
20/10/2020 16:16:46                         tester: 
20/10/2020 16:16:46              dut.10.240.183.67: start
20/10/2020 16:16:46              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:16:46             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_l3dst================
20/10/2020 16:16:46             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:16:46              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:16:46              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:16:46              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:16:46              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:16:46              dut.10.240.183.67: flow list 0
20/10/2020 16:16:47              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 => RSS
20/10/2020 16:16:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:48              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xd7c3c43a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:16:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:16:48             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7c3c43a', '0xa')]
20/10/2020 16:16:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:49              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0x95ff5a4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:16:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x95ff5a4d', '0xd')]
20/10/2020 16:16:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:50              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xd7c3c43a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:16:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:16:50             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7c3c43a', '0xa')]
20/10/2020 16:16:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:51              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xd7c3c43a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:16:51             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:16:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7c3c43a', '0xa')]
20/10/2020 16:16:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:52              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0x95ff5a4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:52             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:16:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x95ff5a4d', '0xd')]
20/10/2020 16:16:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:53              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xd7c3c43a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:16:53             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:16:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7c3c43a', '0xa')]
20/10/2020 16:16:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:54              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xd7c3c43a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:16:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:16:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7c3c43a', '0xa')]
20/10/2020 16:16:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:55              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x95ff5a4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:16:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x95ff5a4d', '0xd')]
20/10/2020 16:16:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:56              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xd7c3c43a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:16:56             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:16:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7c3c43a', '0xa')]
20/10/2020 16:16:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:58              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xd7c3c43a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:16:58             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:16:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7c3c43a', '0xa')]
20/10/2020 16:16:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:16:59              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x95ff5a4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:16:59             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:16:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x95ff5a4d', '0xd')]
20/10/2020 16:16:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:00              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xd7c3c43a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:00             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:17:00             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7c3c43a', '0xa')]
20/10/2020 16:17:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:01              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xd7c3c43a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:01             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7c3c43a', '0xa')]
20/10/2020 16:17:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:02              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x95ff5a4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:02             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x95ff5a4d', '0xd')]
20/10/2020 16:17:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:03              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xd7c3c43a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:17:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7c3c43a', '0xa')]
20/10/2020 16:17:03             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:17:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:17:04              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:17:04              dut.10.240.183.67: flow list 0
20/10/2020 16:17:04              dut.10.240.183.67: 
20/10/2020 16:17:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:05              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:05             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:17:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa')]
20/10/2020 16:17:05             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_l3dst passed
20/10/2020 16:17:05              dut.10.240.183.67: flow flush 0
20/10/2020 16:17:05              dut.10.240.183.67: 
20/10/2020 16:17:05             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_l3src================
20/10/2020 16:17:05             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:17:05              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 16:17:06              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:17:06              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / end actions rss types ipv4 l3-src-only end key_len 0 queues end / end
20/10/2020 16:17:06              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:17:06              dut.10.240.183.67: flow list 0
20/10/2020 16:17:06              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 => RSS
20/10/2020 16:17:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:07              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xf512885e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:07             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xf512885e', '0xe')]
20/10/2020 16:17:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:08              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xf512885e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:08             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:17:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xf512885e', '0xe')]
20/10/2020 16:17:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:09              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xb72e1629 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xb72e1629', '0x9')]
20/10/2020 16:17:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:10              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xf512885e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:10             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xf512885e', '0xe')]
20/10/2020 16:17:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:11              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xf512885e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:11             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:17:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xf512885e', '0xe')]
20/10/2020 16:17:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:12              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xb72e1629 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:12             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xb72e1629', '0x9')]
20/10/2020 16:17:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:13              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xf512885e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:13             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xf512885e', '0xe')]
20/10/2020 16:17:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:14              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xf512885e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:14             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:17:14             TestCVLIAVFRSSGTPU: hash_infos: [('0xf512885e', '0xe')]
20/10/2020 16:17:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:16              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xb72e1629 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xb72e1629', '0x9')]
20/10/2020 16:17:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:17              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf512885e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:17             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xf512885e', '0xe')]
20/10/2020 16:17:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:18              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf512885e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:17:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xf512885e', '0xe')]
20/10/2020 16:17:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:19              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb72e1629 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:19             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xb72e1629', '0x9')]
20/10/2020 16:17:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:20              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xf512885e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:20             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xf512885e', '0xe')]
20/10/2020 16:17:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:21              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xf512885e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:21             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:17:21             TestCVLIAVFRSSGTPU: hash_infos: [('0xf512885e', '0xe')]
20/10/2020 16:17:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:22              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xb72e1629 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xb72e1629', '0x9')]
20/10/2020 16:17:22             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:17:22              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:17:23              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:17:23              dut.10.240.183.67: flow list 0
20/10/2020 16:17:23              dut.10.240.183.67: 
20/10/2020 16:17:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:25              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:25             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:17:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa')]
20/10/2020 16:17:25             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_l3src passed
20/10/2020 16:17:25              dut.10.240.183.67: flow flush 0
20/10/2020 16:17:25              dut.10.240.183.67: 
20/10/2020 16:17:25             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_all================
20/10/2020 16:17:25             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:17:25              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 16:17:25              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:17:25              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 16:17:25              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:17:25              dut.10.240.183.67: flow list 0
20/10/2020 16:17:25              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 => RSS
20/10/2020 16:17:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:26              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xec28fdf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:26             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xec28fdf6', '0x6')]
20/10/2020 16:17:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:27              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0x54bb2715 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x54bb2715', '0x5')]
20/10/2020 16:17:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:28              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xae146381 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xae146381', '0x1')]
20/10/2020 16:17:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:29              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0x1687b962 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x1687b962', '0x2')]
20/10/2020 16:17:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:30              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xec28fdf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:30             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xec28fdf6', '0x6')]
20/10/2020 16:17:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:31              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0x54bb2715 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x54bb2715', '0x5')]
20/10/2020 16:17:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:33              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xae146381 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xae146381', '0x1')]
20/10/2020 16:17:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:34              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0x1687b962 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x1687b962', '0x2')]
20/10/2020 16:17:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:35              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xec28fdf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xec28fdf6', '0x6')]
20/10/2020 16:17:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:36              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x54bb2715 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:36             TestCVLIAVFRSSGTPU: hash_infos: [('0x54bb2715', '0x5')]
20/10/2020 16:17:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:37              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xae146381 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:37             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xae146381', '0x1')]
20/10/2020 16:17:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:38              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x1687b962 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x1687b962', '0x2')]
20/10/2020 16:17:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:39              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xec28fdf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:39             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:39             TestCVLIAVFRSSGTPU: hash_infos: [('0xec28fdf6', '0x6')]
20/10/2020 16:17:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:40              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x54bb2715 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:40             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x54bb2715', '0x5')]
20/10/2020 16:17:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:41              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xae146381 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:41             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:41             TestCVLIAVFRSSGTPU: hash_infos: [('0xae146381', '0x1')]
20/10/2020 16:17:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:42              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x1687b962 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x1687b962', '0x2')]
20/10/2020 16:17:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:44              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xec28fdf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:44             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xec28fdf6', '0x6')]
20/10/2020 16:17:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:45              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x54bb2715 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x54bb2715', '0x5')]
20/10/2020 16:17:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:46              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xae146381 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:46             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xae146381', '0x1')]
20/10/2020 16:17:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:47              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x1687b962 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:17:47             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x1687b962', '0x2')]
20/10/2020 16:17:47             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:17:47              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:17:48              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:17:48              dut.10.240.183.67: flow list 0
20/10/2020 16:17:48              dut.10.240.183.67: 
20/10/2020 16:17:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:49              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:49             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:17:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa')]
20/10/2020 16:17:49             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_all passed
20/10/2020 16:17:49              dut.10.240.183.67: flow flush 0
20/10/2020 16:17:49              dut.10.240.183.67: 
20/10/2020 16:17:49             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_gtpu================
20/10/2020 16:17:49             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:17:49              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / end actions rss types gtpu end key_len 0 queues end / end
20/10/2020 16:17:49              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:17:49              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / end actions rss types gtpu end key_len 0 queues end / end
20/10/2020 16:17:49              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:17:49              dut.10.240.183.67: flow list 0
20/10/2020 16:17:50              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 => RSS
20/10/2020 16:17:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:51              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xdcb0f98 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:51             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xdcb0f98', '0x8')]
20/10/2020 16:17:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:52              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xca3a9aa9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:52             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xca3a9aa9', '0x9')]
20/10/2020 16:17:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:53              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xdcb0f98 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:53             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:17:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xdcb0f98', '0x8')]
20/10/2020 16:17:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:54              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xdcb0f98 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xdcb0f98', '0x8')]
20/10/2020 16:17:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:55              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xca3a9aa9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xca3a9aa9', '0x9')]
20/10/2020 16:17:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:56              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xdcb0f98 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:56             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:17:56             TestCVLIAVFRSSGTPU: hash_infos: [('0xdcb0f98', '0x8')]
20/10/2020 16:17:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:57              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xdcb0f98 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:57             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:17:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xdcb0f98', '0x8')]
20/10/2020 16:17:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:58              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xca3a9aa9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:58             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:17:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xca3a9aa9', '0x9')]
20/10/2020 16:17:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:17:59              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xdcb0f98 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:17:59             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:17:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xdcb0f98', '0x8')]
20/10/2020 16:17:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:01              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xdcb0f98 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:01             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:18:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xdcb0f98', '0x8')]
20/10/2020 16:18:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:02              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xca3a9aa9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:02             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:18:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xca3a9aa9', '0x9')]
20/10/2020 16:18:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:03              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xdcb0f98 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:03             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:18:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xdcb0f98', '0x8')]
20/10/2020 16:18:03             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:18:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:18:04              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:18:04              dut.10.240.183.67: flow list 0
20/10/2020 16:18:04              dut.10.240.183.67: 
20/10/2020 16:18:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:05              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xfc4d3dba - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:05             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:18:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa'), ('0xfc4d3dba', '0xa')]
20/10/2020 16:18:05             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_gtpu passed
20/10/2020 16:18:05              dut.10.240.183.67: flow flush 0
20/10/2020 16:18:05              dut.10.240.183.67: 
20/10/2020 16:18:05             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_ipv4_l3dst': 'passed', 'mac_ipv6_gtpu_ipv4_l3src': 'passed', 'mac_ipv6_gtpu_ipv4_all': 'passed', 'mac_ipv6_gtpu_ipv4_gtpu': 'passed'}
20/10/2020 16:18:05             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:18:05             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv4 Result PASSED:
20/10/2020 16:18:05              dut.10.240.183.67: flow flush 0
20/10/2020 16:18:06              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:18:06              dut.10.240.183.67: clear port stats all
20/10/2020 16:18:08              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:18:08              dut.10.240.183.67: stop
20/10/2020 16:18:08              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 0/Queue= 1 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/Queue= 5 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  RX-packets: 8              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 9 -> TX Port= 0/Queue= 9 -------
  RX-packets: 9              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  RX-packets: 30             TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 0/Queue=14 -------
  RX-packets: 10             TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:18:08             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv4_symmetric Begin
20/10/2020 16:18:08              dut.10.240.183.67: 
20/10/2020 16:18:08                         tester: 
20/10/2020 16:18:08              dut.10.240.183.67: start
20/10/2020 16:18:08              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:18:08              dut.10.240.183.67: quit
20/10/2020 16:18:09              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:18:09              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:18:11              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:18:21              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:18:21              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:18:21              dut.10.240.183.67: set verbose 1
20/10/2020 16:18:21              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:18:21              dut.10.240.183.67: show port info all
20/10/2020 16:18:21              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:18:21              dut.10.240.183.67: start
20/10/2020 16:18:21              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:18:21             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_symmetric================
20/10/2020 16:18:21             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:18:21              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 16:18:21              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:18:21              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 16:18:21              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:18:21              dut.10.240.183.67: flow list 0
20/10/2020 16:18:21              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 => RSS
20/10/2020 16:18:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:22              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0x5e57678b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:22             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 16:18:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x5e57678b', '0xb')]
20/10/2020 16:18:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:23              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0x5e57678b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:23             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:18:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x5e57678b', '0xb')]
20/10/2020 16:18:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:24              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0x5e57678b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:24             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 16:18:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x5e57678b', '0xb')]
20/10/2020 16:18:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:26              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0x5e57678b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:26             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:18:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x5e57678b', '0xb')]
20/10/2020 16:18:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:27              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x5e57678b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:27             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 16:18:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x5e57678b', '0xb')]
20/10/2020 16:18:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:28              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x5e57678b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:28             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:18:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x5e57678b', '0xb')]
20/10/2020 16:18:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:29              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x5e57678b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:29             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 16:18:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x5e57678b', '0xb')]
20/10/2020 16:18:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:30              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x5e57678b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:30             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:18:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x5e57678b', '0xb')]
20/10/2020 16:18:30             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:18:30              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:18:31              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:18:31              dut.10.240.183.67: flow list 0
20/10/2020 16:18:31              dut.10.240.183.67: 
20/10/2020 16:18:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:32              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xf1ba4ac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:32             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 16:18:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1ba4ac8', '0x8')]
20/10/2020 16:18:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:33              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0xf1ba4ac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:33             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 16:18:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1ba4ac8', '0x8')]
20/10/2020 16:18:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:34              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xf1ba4ac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:34             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 16:18:34             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1ba4ac8', '0x8')]
20/10/2020 16:18:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:36              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xf1ba4ac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:36             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-udp'}

20/10/2020 16:18:36             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1ba4ac8', '0x8')]
20/10/2020 16:18:36             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_symmetric passed
20/10/2020 16:18:36              dut.10.240.183.67: flow flush 0
20/10/2020 16:18:36              dut.10.240.183.67: 
20/10/2020 16:18:36             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_ipv4_symmetric': 'passed'}
20/10/2020 16:18:36             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:18:36             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv4_symmetric Result PASSED:
20/10/2020 16:18:36              dut.10.240.183.67: flow flush 0
20/10/2020 16:18:37              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:18:37              dut.10.240.183.67: clear port stats all
20/10/2020 16:18:38              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:18:38              dut.10.240.183.67: stop
20/10/2020 16:18:38              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 0/Queue=11 -------
  RX-packets: 8              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:18:38             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv4_tcp Begin
20/10/2020 16:18:38              dut.10.240.183.67: 
20/10/2020 16:18:38                         tester: 
20/10/2020 16:18:38              dut.10.240.183.67: start
20/10/2020 16:18:38              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:18:38             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_tcp_l3dst================
20/10/2020 16:18:38             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:18:38              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:18:38              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:18:38              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:18:38              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:18:38              dut.10.240.183.67: flow list 0
20/10/2020 16:18:39              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 TCP => RSS
20/10/2020 16:18:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:40              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xaca69d06 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:18:40             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:18:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xaca69d06', '0x6')]
20/10/2020 16:18:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:41              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x37179d7a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:41             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:18:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x37179d7a', '0xa')]
20/10/2020 16:18:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:42              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xaca69d06 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:18:42             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:18:42             TestCVLIAVFRSSGTPU: hash_infos: [('0xaca69d06', '0x6')]
20/10/2020 16:18:42             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:18:42              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:18:43              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:18:43              dut.10.240.183.67: flow list 0
20/10/2020 16:18:43              dut.10.240.183.67: 
20/10/2020 16:18:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:44              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf1ba4ac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:44             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:18:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1ba4ac8', '0x8')]
20/10/2020 16:18:44             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_tcp_l3dst passed
20/10/2020 16:18:44              dut.10.240.183.67: flow flush 0
20/10/2020 16:18:44              dut.10.240.183.67: 
20/10/2020 16:18:44             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_tcp_l3src================
20/10/2020 16:18:44             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:18:44              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 16:18:44              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:18:44              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 16:18:44              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:18:44              dut.10.240.183.67: flow list 0
20/10/2020 16:18:44              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 TCP => RSS
20/10/2020 16:18:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:45              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc526df87 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:45             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:18:45             TestCVLIAVFRSSGTPU: hash_infos: [('0xc526df87', '0x7')]
20/10/2020 16:18:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:47              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc526df87 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:18:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xc526df87', '0x7')]
20/10/2020 16:18:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:48              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x5e97dffb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:18:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x5e97dffb', '0xb')]
20/10/2020 16:18:48             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:18:48              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:18:49              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:18:49              dut.10.240.183.67: flow list 0
20/10/2020 16:18:49              dut.10.240.183.67: 
20/10/2020 16:18:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:50              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf1ba4ac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:50             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:18:50             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1ba4ac8', '0x8')]
20/10/2020 16:18:50             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_tcp_l3src passed
20/10/2020 16:18:50              dut.10.240.183.67: flow flush 0
20/10/2020 16:18:50              dut.10.240.183.67: 
20/10/2020 16:18:50             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_tcp_l3dst_l4src================
20/10/2020 16:18:50             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:18:50              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:18:50              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:18:50              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:18:50              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:18:50              dut.10.240.183.67: flow list 0
20/10/2020 16:18:50              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 TCP => RSS
20/10/2020 16:18:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:51              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x8a29fabc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:51             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:18:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x8a29fabc', '0xc')]
20/10/2020 16:18:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:53              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x1198fac0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:18:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x1198fac0', '0x0')]
20/10/2020 16:18:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:54              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xd3bf66ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:54             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:18:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xd3bf66ab', '0xb')]
20/10/2020 16:18:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:55              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x8a29fabc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:18:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x8a29fabc', '0xc')]
20/10/2020 16:18:55             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:18:55              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:18:56              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:18:56              dut.10.240.183.67: flow list 0
20/10/2020 16:18:56              dut.10.240.183.67: 
20/10/2020 16:18:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:57              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf1ba4ac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:57             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:18:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1ba4ac8', '0x8')]
20/10/2020 16:18:57             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_tcp_l3dst_l4src passed
20/10/2020 16:18:57              dut.10.240.183.67: flow flush 0
20/10/2020 16:18:57              dut.10.240.183.67: 
20/10/2020 16:18:57             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_tcp_l3dst_l4dst================
20/10/2020 16:18:57             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:18:57              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:18:57              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:18:57              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:18:57              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:18:57              dut.10.240.183.67: flow list 0
20/10/2020 16:18:57              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 TCP => RSS
20/10/2020 16:18:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:18:58              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf6d7f14e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:18:58             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:18:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xf6d7f14e', '0xe')]
20/10/2020 16:18:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:00              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x6d66f132 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:19:00             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:19:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x6d66f132', '0x2')]
20/10/2020 16:19:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:01              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xd3bf66ab - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:01             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:19:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xd3bf66ab', '0xb')]
20/10/2020 16:19:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:02              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf6d7f14e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:19:02             TestCVLIAVFRSSGTPU: hash_infos: [('0xf6d7f14e', '0xe')]
20/10/2020 16:19:02             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:19:02              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:19:03              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:19:03              dut.10.240.183.67: flow list 0
20/10/2020 16:19:03              dut.10.240.183.67: 
20/10/2020 16:19:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:04              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf1ba4ac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:04             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 16:19:04             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_tcp_l3dst_l4dst passed
20/10/2020 16:19:04              dut.10.240.183.67: flow flush 0
20/10/2020 16:19:04              dut.10.240.183.67: 
20/10/2020 16:19:04             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_tcp_l3src_l4src================
20/10/2020 16:19:04             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:19:04              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:19:04              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:19:04              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:19:04              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:19:04              dut.10.240.183.67: flow list 0
20/10/2020 16:19:04              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 TCP => RSS
20/10/2020 16:19:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:05              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xe3a9b83d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:19:05             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:19:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xe3a9b83d', '0xd')]
20/10/2020 16:19:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:07              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x7818b841 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:19:07             TestCVLIAVFRSSGTPU: hash_infos: [('0x7818b841', '0x1')]
20/10/2020 16:19:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:08              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xba3f242a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:08             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:19:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xba3f242a', '0xa')]
20/10/2020 16:19:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:09              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xe3a9b83d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:19:09             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:19:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xe3a9b83d', '0xd')]
20/10/2020 16:19:09             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:19:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:19:10              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:19:10              dut.10.240.183.67: flow list 0
20/10/2020 16:19:10              dut.10.240.183.67: 
20/10/2020 16:19:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:11              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf1ba4ac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:11             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:19:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1ba4ac8', '0x8')]
20/10/2020 16:19:11             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_tcp_l3src_l4src passed
20/10/2020 16:19:11              dut.10.240.183.67: flow flush 0
20/10/2020 16:19:11              dut.10.240.183.67: 
20/10/2020 16:19:11             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_tcp_l3src_l4dst================
20/10/2020 16:19:11             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:19:11              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:19:11              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:19:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:19:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:19:11              dut.10.240.183.67: flow list 0
20/10/2020 16:19:11              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 TCP => RSS
20/10/2020 16:19:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:12              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9f57b3cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:12             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:19:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f57b3cf', '0xf')]
20/10/2020 16:19:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:14              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4e6b3b3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:19:14             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:19:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x4e6b3b3', '0x3')]
20/10/2020 16:19:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:15              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xba3f242a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:15             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:19:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xba3f242a', '0xa')]
20/10/2020 16:19:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:16              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x9f57b3cf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:16             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:19:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f57b3cf', '0xf')]
20/10/2020 16:19:16             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:19:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:19:17              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:19:17              dut.10.240.183.67: flow list 0
20/10/2020 16:19:17              dut.10.240.183.67: 
20/10/2020 16:19:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:18              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf1ba4ac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:18             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:19:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1ba4ac8', '0x8')]
20/10/2020 16:19:18             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_tcp_l3src_l4dst passed
20/10/2020 16:19:18              dut.10.240.183.67: flow flush 0
20/10/2020 16:19:18              dut.10.240.183.67: 
20/10/2020 16:19:18             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_tcp_l4src================
20/10/2020 16:19:18             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:19:18              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 16:19:18              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:19:18              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 16:19:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:19:18              dut.10.240.183.67: flow list 0
20/10/2020 16:19:18              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 TCP => RSS
20/10/2020 16:19:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:19              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x59c281bb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:19             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:19:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x59c281bb', '0xb')]
20/10/2020 16:19:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:21              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x5664d3e3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:19:21             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:19:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x5664d3e3', '0x3')]
20/10/2020 16:19:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:22              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x59c281bb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:22             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:19:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x59c281bb', '0xb')]
20/10/2020 16:19:22             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:19:22              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:19:23              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:19:23              dut.10.240.183.67: flow list 0
20/10/2020 16:19:23              dut.10.240.183.67: 
20/10/2020 16:19:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:24              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf1ba4ac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:24             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:19:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1ba4ac8', '0x8')]
20/10/2020 16:19:24             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_tcp_l4src passed
20/10/2020 16:19:24              dut.10.240.183.67: flow flush 0
20/10/2020 16:19:24              dut.10.240.183.67: 
20/10/2020 16:19:24             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_tcp_l4dst================
20/10/2020 16:19:24             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:19:24              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:19:24              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:19:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:19:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:19:24              dut.10.240.183.67: flow list 0
20/10/2020 16:19:24              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 TCP => RSS
20/10/2020 16:19:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:25              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb15930bb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:25             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:19:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xb15930bb', '0xb')]
20/10/2020 16:19:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:27              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xbeff62e3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:19:27             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:19:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xbeff62e3', '0x3')]
20/10/2020 16:19:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:28              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb15930bb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:28             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:19:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xb15930bb', '0xb')]
20/10/2020 16:19:28             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:19:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:19:29              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:19:29              dut.10.240.183.67: flow list 0
20/10/2020 16:19:29              dut.10.240.183.67: 
20/10/2020 16:19:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:30              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf1ba4ac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:30             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:19:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1ba4ac8', '0x8')]
20/10/2020 16:19:30             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_tcp_l4dst passed
20/10/2020 16:19:30              dut.10.240.183.67: flow flush 0
20/10/2020 16:19:30              dut.10.240.183.67: 
20/10/2020 16:19:30             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_tcp_all================
20/10/2020 16:19:30             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:19:30              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 16:19:30              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:19:30              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 16:19:30              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:19:30              dut.10.240.183.67: flow list 0
20/10/2020 16:19:30              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 TCP => RSS
20/10/2020 16:19:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:31              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4c7a32ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:31             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:19:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x4c7a32ef', '0xf')]
20/10/2020 16:19:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:32              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x3aaa72bb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:19:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x3aaa72bb', '0xb')]
20/10/2020 16:19:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:34              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xc2e1482 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:19:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:19:34             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e1482', '0x2')]
20/10/2020 16:19:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:35              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb271c004 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:19:35             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:19:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xb271c004', '0x4')]
20/10/2020 16:19:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:36              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xd7cb3293 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:19:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:19:36             TestCVLIAVFRSSGTPU: hash_infos: [('0xd7cb3293', '0x3')]
20/10/2020 16:19:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:37              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x4c7a32ef - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:19:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x4c7a32ef', '0xf')]
20/10/2020 16:19:37             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:19:37              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:19:38              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:19:38              dut.10.240.183.67: flow list 0
20/10/2020 16:19:38              dut.10.240.183.67: 
20/10/2020 16:19:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:39              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf1ba4ac8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:39             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:19:39             TestCVLIAVFRSSGTPU: hash_infos: [('0xf1ba4ac8', '0x8')]
20/10/2020 16:19:39             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_tcp_all passed
20/10/2020 16:19:39              dut.10.240.183.67: flow flush 0
20/10/2020 16:19:39              dut.10.240.183.67: 
20/10/2020 16:19:39             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_ipv4_tcp_l3dst': 'passed', 'mac_ipv6_gtpu_ipv4_tcp_l3src': 'passed', 'mac_ipv6_gtpu_ipv4_tcp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_ipv4_tcp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_ipv4_tcp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_ipv4_tcp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_ipv4_tcp_l4src': 'passed', 'mac_ipv6_gtpu_ipv4_tcp_l4dst': 'passed', 'mac_ipv6_gtpu_ipv4_tcp_all': 'passed'}
20/10/2020 16:19:39             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:19:39             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv4_tcp Result PASSED:
20/10/2020 16:19:39              dut.10.240.183.67: flow flush 0
20/10/2020 16:19:40              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:19:40              dut.10.240.183.67: clear port stats all
20/10/2020 16:19:42              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:19:42              dut.10.240.183.67: stop
20/10/2020 16:19:42              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 0/Queue= 1 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 0/Queue= 3 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 7 -> TX Port= 0/Queue= 7 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  RX-packets: 9              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 0/Queue=11 -------
  RX-packets: 8              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 0/Queue=12 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 0/Queue=14 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 0/Queue=15 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:19:42             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv4_tcp_symmetric Begin
20/10/2020 16:19:42              dut.10.240.183.67: 
20/10/2020 16:19:42                         tester: 
20/10/2020 16:19:42              dut.10.240.183.67: start
20/10/2020 16:19:42              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:19:42              dut.10.240.183.67: quit
20/10/2020 16:19:44              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:19:44              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:19:45              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:19:55              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:19:55              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:19:55              dut.10.240.183.67: set verbose 1
20/10/2020 16:19:55              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:19:55              dut.10.240.183.67: show port info all
20/10/2020 16:19:55              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:19:55              dut.10.240.183.67: start
20/10/2020 16:19:55              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:19:55             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_tcp_symmetric================
20/10/2020 16:19:55             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:19:55              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end  actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 16:19:55              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:19:55              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / tcp / end  actions rss func symmetric_toeplitz types ipv4-tcp end key_len 0 queues end / end
20/10/2020 16:19:55              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:19:55              dut.10.240.183.67: flow list 0
20/10/2020 16:19:55              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 TCP => RSS
20/10/2020 16:19:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:56              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x42cceef0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:56             TestCVLIAVFRSSGTPU: action: {'save_hash': 'basic_with_rule'}

20/10/2020 16:19:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x42cceef0', '0x0')]
20/10/2020 16:19:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:57              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x42cceef0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:57             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:19:57             TestCVLIAVFRSSGTPU: hash_infos: [('0x42cceef0', '0x0')]
20/10/2020 16:19:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:19:59              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x42cceef0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:19:59             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:19:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x42cceef0', '0x0')]
20/10/2020 16:19:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:00              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x42cceef0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:00             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:20:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x42cceef0', '0x0')]
20/10/2020 16:20:00             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:20:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:20:01              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:20:01              dut.10.240.183.67: flow list 0
20/10/2020 16:20:01              dut.10.240.183.67: 
20/10/2020 16:20:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:02              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x6ee11e00 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:02             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:20:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee11e00', '0x0')]
20/10/2020 16:20:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:03              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x6ee11e00 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:03             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:20:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee11e00', '0x0')]
20/10/2020 16:20:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:04              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x6ee11e00 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:04             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:20:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee11e00', '0x0')]
20/10/2020 16:20:04             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_tcp_symmetric passed
20/10/2020 16:20:04              dut.10.240.183.67: flow flush 0
20/10/2020 16:20:04              dut.10.240.183.67: 
20/10/2020 16:20:04             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_ipv4_tcp_symmetric': 'passed'}
20/10/2020 16:20:04             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:20:04             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv4_tcp_symmetric Result PASSED:
20/10/2020 16:20:04              dut.10.240.183.67: flow flush 0
20/10/2020 16:20:05              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:20:05              dut.10.240.183.67: clear port stats all
20/10/2020 16:20:07              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:20:07              dut.10.240.183.67: stop
20/10/2020 16:20:07              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 7              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:20:07             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv4_udp Begin
20/10/2020 16:20:07              dut.10.240.183.67: 
20/10/2020 16:20:07                         tester: 
20/10/2020 16:20:07              dut.10.240.183.67: start
20/10/2020 16:20:07              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:20:07             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_udp_l3dst================
20/10/2020 16:20:07             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:20:07              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:20:07              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:20:07              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:20:07              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:20:07              dut.10.240.183.67: flow list 0
20/10/2020 16:20:07              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 UDP => RSS
20/10/2020 16:20:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:08              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xb246d09 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:08             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:20:08             TestCVLIAVFRSSGTPU: hash_infos: [('0xb246d09', '0x9')]
20/10/2020 16:20:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:09              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x4c38bd9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:09             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:20:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x4c38bd9', '0x9')]
20/10/2020 16:20:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:11              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xb246d09 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:11             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:20:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xb246d09', '0x9')]
20/10/2020 16:20:11             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:20:11              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:20:12              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:20:12              dut.10.240.183.67: flow list 0
20/10/2020 16:20:12              dut.10.240.183.67: 
20/10/2020 16:20:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:13              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x6ee11e00 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:13             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:20:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee11e00', '0x0')]
20/10/2020 16:20:13             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_udp_l3dst passed
20/10/2020 16:20:13              dut.10.240.183.67: flow flush 0
20/10/2020 16:20:13              dut.10.240.183.67: 
20/10/2020 16:20:13             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_udp_l3src================
20/10/2020 16:20:13             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:20:13              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 16:20:13              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:20:13              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only end key_len 0 queues end / end
20/10/2020 16:20:13              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:20:13              dut.10.240.183.67: flow list 0
20/10/2020 16:20:13              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 UDP => RSS
20/10/2020 16:20:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:14              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x1f31d536 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:14             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:20:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x1f31d536', '0x6')]
20/10/2020 16:20:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:15              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x1f31d536 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:15             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:20:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x1f31d536', '0x6')]
20/10/2020 16:20:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:16              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x10d633e6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:16             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:20:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x10d633e6', '0x6')]
20/10/2020 16:20:16             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:20:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:20:18              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:20:18              dut.10.240.183.67: flow list 0
20/10/2020 16:20:18              dut.10.240.183.67: 
20/10/2020 16:20:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:19              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x6ee11e00 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:19             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:20:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee11e00', '0x0')]
20/10/2020 16:20:19             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_udp_l3src passed
20/10/2020 16:20:19              dut.10.240.183.67: flow flush 0
20/10/2020 16:20:19              dut.10.240.183.67: 
20/10/2020 16:20:19             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_udp_l3dst_l4src================
20/10/2020 16:20:19             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:20:19              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:20:19              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:20:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:20:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:20:19              dut.10.240.183.67: flow list 0
20/10/2020 16:20:19              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 UDP => RSS
20/10/2020 16:20:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:20              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xba391d71 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:20             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:20:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xba391d71', '0x1')]
20/10/2020 16:20:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:21              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xb5defba1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:21             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:20:21             TestCVLIAVFRSSGTPU: hash_infos: [('0xb5defba1', '0x1')]
20/10/2020 16:20:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:22              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xed8fe88d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:20:22             TestCVLIAVFRSSGTPU: hash_infos: [('0xed8fe88d', '0xd')]
20/10/2020 16:20:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:23              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xba391d71 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:23             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:20:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xba391d71', '0x1')]
20/10/2020 16:20:23             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:20:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:20:25              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:20:25              dut.10.240.183.67: flow list 0
20/10/2020 16:20:25              dut.10.240.183.67: 
20/10/2020 16:20:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:26              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x6ee11e00 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:26             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:20:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee11e00', '0x0')]
20/10/2020 16:20:26             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_udp_l3dst_l4src passed
20/10/2020 16:20:26              dut.10.240.183.67: flow flush 0
20/10/2020 16:20:26              dut.10.240.183.67: 
20/10/2020 16:20:26             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_udp_l3dst_l4dst================
20/10/2020 16:20:26             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:20:26              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:20:26              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:20:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:20:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:20:26              dut.10.240.183.67: flow list 0
20/10/2020 16:20:26              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 UDP => RSS
20/10/2020 16:20:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:27              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x6a13ce6d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:27             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:20:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x6a13ce6d', '0xd')]
20/10/2020 16:20:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:28              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x65f428bd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:20:28             TestCVLIAVFRSSGTPU: hash_infos: [('0x65f428bd', '0xd')]
20/10/2020 16:20:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:29              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xed8fe88d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:29             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:20:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xed8fe88d', '0xd')]
20/10/2020 16:20:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:30              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x6a13ce6d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:30             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:20:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x6a13ce6d', '0xd')]
20/10/2020 16:20:30             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:20:30              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:20:32              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:20:32              dut.10.240.183.67: flow list 0
20/10/2020 16:20:32              dut.10.240.183.67: 
20/10/2020 16:20:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:33              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x6ee11e00 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:33             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 16:20:33             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_udp_l3dst_l4dst passed
20/10/2020 16:20:33              dut.10.240.183.67: flow flush 0
20/10/2020 16:20:33              dut.10.240.183.67: 
20/10/2020 16:20:33             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_udp_l3src_l4src================
20/10/2020 16:20:33             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:20:33              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:20:33              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:20:33              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:20:33              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:20:33              dut.10.240.183.67: flow list 0
20/10/2020 16:20:33              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 UDP => RSS
20/10/2020 16:20:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:34              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xae2ca54e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:34             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:20:34             TestCVLIAVFRSSGTPU: hash_infos: [('0xae2ca54e', '0xe')]
20/10/2020 16:20:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:35              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xa1cb439e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:35             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:20:35             TestCVLIAVFRSSGTPU: hash_infos: [('0xa1cb439e', '0xe')]
20/10/2020 16:20:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:36              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xf99a50b2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:20:36             TestCVLIAVFRSSGTPU: hash_infos: [('0xf99a50b2', '0x2')]
20/10/2020 16:20:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:37              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xae2ca54e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:20:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xae2ca54e', '0xe')]
20/10/2020 16:20:37             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:20:37              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:20:39              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:20:39              dut.10.240.183.67: flow list 0
20/10/2020 16:20:39              dut.10.240.183.67: 
20/10/2020 16:20:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:40              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x6ee11e00 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:40             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:20:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee11e00', '0x0')]
20/10/2020 16:20:40             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_udp_l3src_l4src passed
20/10/2020 16:20:40              dut.10.240.183.67: flow flush 0
20/10/2020 16:20:40              dut.10.240.183.67: 
20/10/2020 16:20:40             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_udp_l3src_l4dst================
20/10/2020 16:20:40             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:20:40              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:20:40              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:20:40              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:20:40              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:20:40              dut.10.240.183.67: flow list 0
20/10/2020 16:20:40              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 UDP => RSS
20/10/2020 16:20:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:41              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x7e067652 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:20:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e067652', '0x2')]
20/10/2020 16:20:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:42              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x71e19082 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:20:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x71e19082', '0x2')]
20/10/2020 16:20:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:43              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xf99a50b2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:43             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:20:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xf99a50b2', '0x2')]
20/10/2020 16:20:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:45              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x7e067652 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:45             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:20:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x7e067652', '0x2')]
20/10/2020 16:20:45             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:20:45              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:20:46              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:20:46              dut.10.240.183.67: flow list 0
20/10/2020 16:20:46              dut.10.240.183.67: 
20/10/2020 16:20:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:47              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x6ee11e00 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:47             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:20:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee11e00', '0x0')]
20/10/2020 16:20:47             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_udp_l3src_l4dst passed
20/10/2020 16:20:47              dut.10.240.183.67: flow flush 0
20/10/2020 16:20:47              dut.10.240.183.67: 
20/10/2020 16:20:47             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_udp_l4src================
20/10/2020 16:20:47             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:20:47              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 16:20:47              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:20:47              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l4-src-only end key_len 0 queues end / end
20/10/2020 16:20:47              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:20:47              dut.10.240.183.67: flow list 0
20/10/2020 16:20:47              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 UDP => RSS
20/10/2020 16:20:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:48              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x1079b57b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:20:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x1079b57b', '0xb')]
20/10/2020 16:20:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:49              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xa5fd3e30 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:49             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:20:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xa5fd3e30', '0x0')]
20/10/2020 16:20:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:50              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x1079b57b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:20:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x1079b57b', '0xb')]
20/10/2020 16:20:50             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:20:50              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:20:52              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:20:52              dut.10.240.183.67: flow list 0
20/10/2020 16:20:52              dut.10.240.183.67: 
20/10/2020 16:20:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:53              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x6ee11e00 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:53             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:20:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee11e00', '0x0')]
20/10/2020 16:20:53             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_udp_l4src passed
20/10/2020 16:20:53              dut.10.240.183.67: flow flush 0
20/10/2020 16:20:53              dut.10.240.183.67: 
20/10/2020 16:20:53             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_udp_l4dst================
20/10/2020 16:20:53             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:20:53              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:20:53              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:20:53              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:20:53              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:20:53              dut.10.240.183.67: flow list 0
20/10/2020 16:20:53              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 UDP => RSS
20/10/2020 16:20:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:54              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x76529d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:54             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:20:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x76529d', '0xd')]
20/10/2020 16:20:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:55              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xb5f2d9d6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:55             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:20:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xb5f2d9d6', '0x6')]
20/10/2020 16:20:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:56              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x76529d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:20:56             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:20:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x76529d', '0xd')]
20/10/2020 16:20:56             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:20:56              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:20:57              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:20:57              dut.10.240.183.67: flow list 0
20/10/2020 16:20:58              dut.10.240.183.67: 
20/10/2020 16:20:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:20:59              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x6ee11e00 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:20:59             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:20:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee11e00', '0x0')]
20/10/2020 16:20:59             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_udp_l4dst passed
20/10/2020 16:20:59              dut.10.240.183.67: flow flush 0
20/10/2020 16:20:59              dut.10.240.183.67: 
20/10/2020 16:20:59             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_udp_all================
20/10/2020 16:20:59             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:20:59              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 16:20:59              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:20:59              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-udp end key_len 0 queues end / end
20/10/2020 16:20:59              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:20:59              dut.10.240.183.67: flow list 0
20/10/2020 16:20:59              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 UDP => RSS
20/10/2020 16:20:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:00              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x546b5b03 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:00             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:21:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x546b5b03', '0x3')]
20/10/2020 16:21:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:01              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x65b88a7b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:21:01             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:21:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x65b88a7b', '0xb')]
20/10/2020 16:21:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:02              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x851335ec - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:21:02             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:21:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x851335ec', '0xc')]
20/10/2020 16:21:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:03              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x7eb84739 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:21:03             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:21:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x7eb84739', '0x9')]
20/10/2020 16:21:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:04              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x5b8cbdd3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:21:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x5b8cbdd3', '0x3')]
20/10/2020 16:21:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:06              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x546b5b03 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:21:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:21:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x546b5b03', '0x3')]
20/10/2020 16:21:06             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:21:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:21:07              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:21:07              dut.10.240.183.67: flow list 0
20/10/2020 16:21:07              dut.10.240.183.67: 
20/10/2020 16:21:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:08              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x6ee11e00 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:21:08             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:21:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x6ee11e00', '0x0')]
20/10/2020 16:21:08             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_udp_all passed
20/10/2020 16:21:08              dut.10.240.183.67: flow flush 0
20/10/2020 16:21:08              dut.10.240.183.67: 
20/10/2020 16:21:08             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_ipv4_udp_l3dst': 'passed', 'mac_ipv6_gtpu_ipv4_udp_l3src': 'passed', 'mac_ipv6_gtpu_ipv4_udp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_ipv4_udp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_ipv4_udp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_ipv4_udp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_ipv4_udp_l4src': 'passed', 'mac_ipv6_gtpu_ipv4_udp_l4dst': 'passed', 'mac_ipv6_gtpu_ipv4_udp_all': 'passed'}
20/10/2020 16:21:08             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:21:08             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv4_udp Result PASSED:
20/10/2020 16:21:08              dut.10.240.183.67: flow flush 0
20/10/2020 16:21:09              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:21:09              dut.10.240.183.67: clear port stats all
20/10/2020 16:21:10              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:21:10              dut.10.240.183.67: stop
20/10/2020 16:21:10              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 10             TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 0/Queue= 1 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 0/Queue= 3 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 9 -> TX Port= 0/Queue= 9 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 0/Queue=11 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 0/Queue=12 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 7              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 0/Queue=14 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:21:10             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv4_udp_symmetric Begin
20/10/2020 16:21:10              dut.10.240.183.67: 
20/10/2020 16:21:11                         tester: 
20/10/2020 16:21:11              dut.10.240.183.67: start
20/10/2020 16:21:11              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:21:11              dut.10.240.183.67: quit
20/10/2020 16:21:12              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:21:12              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:21:13              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:21:23              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:21:24              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:21:24              dut.10.240.183.67: set verbose 1
20/10/2020 16:21:24              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:21:24              dut.10.240.183.67: show port info all
20/10/2020 16:21:24              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:21:24              dut.10.240.183.67: start
20/10/2020 16:21:24              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:21:24             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_udp_symmetric================
20/10/2020 16:21:24             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:21:24              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 16:21:24              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:21:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv4 / udp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 16:21:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:21:24              dut.10.240.183.67: flow list 0
20/10/2020 16:21:24              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV4 UDP => RSS
20/10/2020 16:21:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:25              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xa1e40592 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:25             TestCVLIAVFRSSGTPU: action: {'save_hash': 'basic_with_rule'}

20/10/2020 16:21:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xa1e40592', '0x2')]
20/10/2020 16:21:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:26              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xa1e40592 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:26             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:21:26             TestCVLIAVFRSSGTPU: hash_infos: [('0xa1e40592', '0x2')]
20/10/2020 16:21:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:27              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xa1e40592 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:27             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:21:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xa1e40592', '0x2')]
20/10/2020 16:21:27             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:28              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0xa1e40592 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:28             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:21:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xa1e40592', '0x2')]
20/10/2020 16:21:28             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:21:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:21:30              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:21:30              dut.10.240.183.67: flow list 0
20/10/2020 16:21:30              dut.10.240.183.67: 
20/10/2020 16:21:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:31              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:31             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:21:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x68a01a3d', '0xd')]
20/10/2020 16:21:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:32              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:32             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:21:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x68a01a3d', '0xd')]
20/10/2020 16:21:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:33              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:33             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:21:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x68a01a3d', '0xd')]
20/10/2020 16:21:33             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_udp_symmetric passed
20/10/2020 16:21:33              dut.10.240.183.67: flow flush 0
20/10/2020 16:21:33              dut.10.240.183.67: 
20/10/2020 16:21:33             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_ipv4_udp_symmetric': 'passed'}
20/10/2020 16:21:33             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:21:33             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv4_udp_symmetric Result PASSED:
20/10/2020 16:21:33              dut.10.240.183.67: flow flush 0
20/10/2020 16:21:34              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:21:34              dut.10.240.183.67: clear port stats all
20/10/2020 16:21:35              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:21:35              dut.10.240.183.67: stop
20/10/2020 16:21:35              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:21:35             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv6 Begin
20/10/2020 16:21:36              dut.10.240.183.67: 
20/10/2020 16:21:36                         tester: 
20/10/2020 16:21:36              dut.10.240.183.67: start
20/10/2020 16:21:36              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:21:36             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_l3dst================
20/10/2020 16:21:36             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:21:36              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:21:36              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:21:36              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / end actions rss types ipv6 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:21:36              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:21:36              dut.10.240.183.67: flow list 0
20/10/2020 16:21:36              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 => RSS
20/10/2020 16:21:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:37              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xbcc89153 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:37             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:21:37             TestCVLIAVFRSSGTPU: hash_infos: [('0xbcc89153', '0x3')]
20/10/2020 16:21:37             TestCVLIAVFRSSGTPU: action: ipv6-nonfrag

20/10/2020 16:21:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:38              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x287fecca - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:21:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:21:38             TestCVLIAVFRSSGTPU: hash_infos: [('0x287fecca', '0xa')]
20/10/2020 16:21:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:39              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xbcc89153 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:39             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:21:39             TestCVLIAVFRSSGTPU: hash_infos: [('0xbcc89153', '0x3')]
20/10/2020 16:21:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:40              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xbcc89153 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:40             TestCVLIAVFRSSGTPU: action: ipv6-frag

20/10/2020 16:21:40             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:21:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xbcc89153', '0x3')]
20/10/2020 16:21:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:41              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x287fecca - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:21:41             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:21:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x287fecca', '0xa')]
20/10/2020 16:21:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:43              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xbcc89153 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:43             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:21:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xbcc89153', '0x3')]
20/10/2020 16:21:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:44              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xbcc89153 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:44             TestCVLIAVFRSSGTPU: action: ipv6-icmp

20/10/2020 16:21:44             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:21:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xbcc89153', '0x3')]
20/10/2020 16:21:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:45              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x287fecca - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:21:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:21:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x287fecca', '0xa')]
20/10/2020 16:21:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:46              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xbcc89153 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:46             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:21:46             TestCVLIAVFRSSGTPU: hash_infos: [('0xbcc89153', '0x3')]
20/10/2020 16:21:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:47              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xbcc89153 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:47             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:21:47             TestCVLIAVFRSSGTPU: hash_infos: [('0xbcc89153', '0x3')]
20/10/2020 16:21:47             TestCVLIAVFRSSGTPU: action: ipv6-tcp

20/10/2020 16:21:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:48              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x287fecca - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:21:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:21:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x287fecca', '0xa')]
20/10/2020 16:21:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:49              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xbcc89153 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:49             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:21:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xbcc89153', '0x3')]
20/10/2020 16:21:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:50              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xbcc89153 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:50             TestCVLIAVFRSSGTPU: action: ipv6-udp

20/10/2020 16:21:50             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:21:50             TestCVLIAVFRSSGTPU: hash_infos: [('0xbcc89153', '0x3')]
20/10/2020 16:21:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:51              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x287fecca - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:21:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:21:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x287fecca', '0xa')]
20/10/2020 16:21:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:52              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xbcc89153 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:21:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xbcc89153', '0x3')]
20/10/2020 16:21:52             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:21:52              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:21:54              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:21:54              dut.10.240.183.67: flow list 0
20/10/2020 16:21:54              dut.10.240.183.67: 
20/10/2020 16:21:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:55              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:55             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:21:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd')]
20/10/2020 16:21:55             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_l3dst passed
20/10/2020 16:21:55              dut.10.240.183.67: flow flush 0
20/10/2020 16:21:55              dut.10.240.183.67: 
20/10/2020 16:21:55             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_l3src_only================
20/10/2020 16:21:55             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:21:55              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 16:21:55              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:21:55              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / end actions rss types ipv6 l3-src-only end key_len 0 queues end / end
20/10/2020 16:21:55              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:21:55              dut.10.240.183.67: flow list 0
20/10/2020 16:21:55              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 => RSS
20/10/2020 16:21:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:56              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x7688840f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:21:56             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:21:56             TestCVLIAVFRSSGTPU: hash_infos: [('0x7688840f', '0xf')]
20/10/2020 16:21:56             TestCVLIAVFRSSGTPU: action: ipv6-nonfrag

20/10/2020 16:21:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:57              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xf536e983 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:21:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:21:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xf536e983', '0x3')]
20/10/2020 16:21:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:21:58              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x7688840f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:21:58             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:21:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x7688840f', '0xf')]
20/10/2020 16:21:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:00              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x7688840f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:00             TestCVLIAVFRSSGTPU: action: ipv6-frag

20/10/2020 16:22:00             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:22:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x7688840f', '0xf')]
20/10/2020 16:22:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:01              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xf536e983 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:22:01             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:01             TestCVLIAVFRSSGTPU: hash_infos: [('0xf536e983', '0x3')]
20/10/2020 16:22:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:02              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x7688840f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:02             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:22:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x7688840f', '0xf')]
20/10/2020 16:22:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:03              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x7688840f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:03             TestCVLIAVFRSSGTPU: action: ipv6-icmp

20/10/2020 16:22:03             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:22:03             TestCVLIAVFRSSGTPU: hash_infos: [('0x7688840f', '0xf')]
20/10/2020 16:22:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:04              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xf536e983 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:22:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xf536e983', '0x3')]
20/10/2020 16:22:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:05              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x7688840f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:22:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x7688840f', '0xf')]
20/10/2020 16:22:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:06              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x7688840f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:06             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:22:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x7688840f', '0xf')]
20/10/2020 16:22:06             TestCVLIAVFRSSGTPU: action: ipv6-tcp

20/10/2020 16:22:06             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:07              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xf536e983 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:22:07             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:07             TestCVLIAVFRSSGTPU: hash_infos: [('0xf536e983', '0x3')]
20/10/2020 16:22:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:08              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x7688840f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:08             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:22:08             TestCVLIAVFRSSGTPU: hash_infos: [('0x7688840f', '0xf')]
20/10/2020 16:22:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:09              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x7688840f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:09             TestCVLIAVFRSSGTPU: action: ipv6-udp

20/10/2020 16:22:09             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:22:09             TestCVLIAVFRSSGTPU: hash_infos: [('0x7688840f', '0xf')]
20/10/2020 16:22:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:11              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xf536e983 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:22:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xf536e983', '0x3')]
20/10/2020 16:22:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:12              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x7688840f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:22:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x7688840f', '0xf')]
20/10/2020 16:22:12             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:22:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:22:13              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:22:13              dut.10.240.183.67: flow list 0
20/10/2020 16:22:13              dut.10.240.183.67: 
20/10/2020 16:22:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:14              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:22:14             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:22:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd')]
20/10/2020 16:22:14             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_l3src_only passed
20/10/2020 16:22:14              dut.10.240.183.67: flow flush 0
20/10/2020 16:22:14              dut.10.240.183.67: 
20/10/2020 16:22:14             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_all================
20/10/2020 16:22:14             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:22:14              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 16:22:14              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:22:14              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / end actions rss types ipv6 end key_len 0 queues end / end
20/10/2020 16:22:14              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:22:14              dut.10.240.183.67: flow list 0
20/10/2020 16:22:14              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 => RSS
20/10/2020 16:22:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:15              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xb4875ee7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:15             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:22:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xb4875ee7', '0x7')]
20/10/2020 16:22:15             TestCVLIAVFRSSGTPU: action: ipv6-nonfrag

20/10/2020 16:22:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:17              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x6aff3834 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:22:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x6aff3834', '0x4')]
20/10/2020 16:22:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:18              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x3739336b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x3739336b', '0xb')]
20/10/2020 16:22:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:19              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0xe94155b8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:19             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xe94155b8', '0x8')]
20/10/2020 16:22:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:20              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xb4875ee7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:20             TestCVLIAVFRSSGTPU: action: ipv6-frag

20/10/2020 16:22:20             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:22:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xb4875ee7', '0x7')]
20/10/2020 16:22:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:21              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x6aff3834 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:22:21             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:21             TestCVLIAVFRSSGTPU: hash_infos: [('0x6aff3834', '0x4')]
20/10/2020 16:22:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:22              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3739336b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x3739336b', '0xb')]
20/10/2020 16:22:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:23              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xe94155b8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:23             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xe94155b8', '0x8')]
20/10/2020 16:22:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:24              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xb4875ee7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:24             TestCVLIAVFRSSGTPU: action: ipv6-icmp

20/10/2020 16:22:24             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:22:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xb4875ee7', '0x7')]
20/10/2020 16:22:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:25              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x6aff3834 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:22:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x6aff3834', '0x4')]
20/10/2020 16:22:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:26              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3739336b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x3739336b', '0xb')]
20/10/2020 16:22:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:28              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xe94155b8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:28             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:28             TestCVLIAVFRSSGTPU: hash_infos: [('0xe94155b8', '0x8')]
20/10/2020 16:22:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:29              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xb4875ee7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:29             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:22:29             TestCVLIAVFRSSGTPU: hash_infos: [('0xb4875ee7', '0x7')]
20/10/2020 16:22:29             TestCVLIAVFRSSGTPU: action: ipv6-tcp

20/10/2020 16:22:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:30              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x6aff3834 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:22:30             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x6aff3834', '0x4')]
20/10/2020 16:22:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:31              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3739336b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x3739336b', '0xb')]
20/10/2020 16:22:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:32              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xe94155b8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xe94155b8', '0x8')]
20/10/2020 16:22:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:33              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xb4875ee7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:33             TestCVLIAVFRSSGTPU: action: ipv6-udp

20/10/2020 16:22:33             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:22:33             TestCVLIAVFRSSGTPU: hash_infos: [('0xb4875ee7', '0x7')]
20/10/2020 16:22:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:34              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x6aff3834 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:22:34             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x6aff3834', '0x4')]
20/10/2020 16:22:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:35              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3739336b - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:35             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x3739336b', '0xb')]
20/10/2020 16:22:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:36              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xe94155b8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:36             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:36             TestCVLIAVFRSSGTPU: hash_infos: [('0xe94155b8', '0x8')]
20/10/2020 16:22:36             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:22:36              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:22:38              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:22:38              dut.10.240.183.67: flow list 0
20/10/2020 16:22:38              dut.10.240.183.67: 
20/10/2020 16:22:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:39              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:22:39             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:22:39             TestCVLIAVFRSSGTPU: hash_infos: [('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd')]
20/10/2020 16:22:39             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_all passed
20/10/2020 16:22:39              dut.10.240.183.67: flow flush 0
20/10/2020 16:22:39              dut.10.240.183.67: 
20/10/2020 16:22:39             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_gtpu================
20/10/2020 16:22:39             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:22:39              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / end actions rss types gtpu end key_len 0 queues end / end
20/10/2020 16:22:39              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:22:39              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / end actions rss types gtpu end key_len 0 queues end / end
20/10/2020 16:22:39              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:22:39              dut.10.240.183.67: flow list 0
20/10/2020 16:22:39              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 => RSS
20/10/2020 16:22:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:40              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x3de788eb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:40             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:22:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x3de788eb', '0xb')]
20/10/2020 16:22:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:41              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x82f3e8f0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:41             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x82f3e8f0', '0x0')]
20/10/2020 16:22:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:42              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x3de788eb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:42             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:22:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x3de788eb', '0xb')]
20/10/2020 16:22:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:44              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3de788eb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:44             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:22:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x3de788eb', '0xb')]
20/10/2020 16:22:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:45              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x82f3e8f0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x82f3e8f0', '0x0')]
20/10/2020 16:22:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:46              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3de788eb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:46             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:22:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x3de788eb', '0xb')]
20/10/2020 16:22:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:47              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3de788eb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:47             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:22:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x3de788eb', '0xb')]
20/10/2020 16:22:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:48              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x82f3e8f0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:48             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x82f3e8f0', '0x0')]
20/10/2020 16:22:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:49              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3de788eb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:49             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:22:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x3de788eb', '0xb')]
20/10/2020 16:22:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:50              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3de788eb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:50             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:22:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x3de788eb', '0xb')]
20/10/2020 16:22:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:51              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x82f3e8f0 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:22:51             TestCVLIAVFRSSGTPU: hash_infos: [('0x82f3e8f0', '0x0')]
20/10/2020 16:22:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:52              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3de788eb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:22:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:22:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x3de788eb', '0xb')]
20/10/2020 16:22:52             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:22:52              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:22:54              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:22:54              dut.10.240.183.67: flow list 0
20/10/2020 16:22:54              dut.10.240.183.67: 
20/10/2020 16:22:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:22:55              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x68a01a3d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:22:55             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:22:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd'), ('0x68a01a3d', '0xd')]
20/10/2020 16:22:55             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_gtpu passed
20/10/2020 16:22:55              dut.10.240.183.67: flow flush 0
20/10/2020 16:22:55              dut.10.240.183.67: 
20/10/2020 16:22:55             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_ipv6_l3dst': 'passed', 'mac_ipv6_gtpu_ipv6_l3src_only': 'passed', 'mac_ipv6_gtpu_ipv6_all': 'passed', 'mac_ipv6_gtpu_ipv6_gtpu': 'passed'}
20/10/2020 16:22:55             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:22:55             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv6 Result PASSED:
20/10/2020 16:22:55              dut.10.240.183.67: flow flush 0
20/10/2020 16:22:56              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:22:56              dut.10.240.183.67: clear port stats all
20/10/2020 16:22:57              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:22:57              dut.10.240.183.67: stop
20/10/2020 16:22:57              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 0/Queue= 3 -------
  RX-packets: 15             TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 7 -> TX Port= 0/Queue= 7 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 0/Queue=11 -------
  RX-packets: 13             TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 20             TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 0/Queue=15 -------
  RX-packets: 10             TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:22:57             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv6_symmetric Begin
20/10/2020 16:22:57              dut.10.240.183.67: 
20/10/2020 16:22:57                         tester: 
20/10/2020 16:22:57              dut.10.240.183.67: start
20/10/2020 16:22:58              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:22:58              dut.10.240.183.67: quit
20/10/2020 16:22:59              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:22:59              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:23:00              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:23:10              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:23:11              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:23:11              dut.10.240.183.67: set verbose 1
20/10/2020 16:23:11              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:23:11              dut.10.240.183.67: show port info all
20/10/2020 16:23:11              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:23:11              dut.10.240.183.67: start
20/10/2020 16:23:11              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:23:11             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_symmetric================
20/10/2020 16:23:11             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:23:11              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 16:23:11              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:23:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / end actions rss func symmetric_toeplitz types ipv6 end key_len 0 queues end / end
20/10/2020 16:23:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:23:11              dut.10.240.183.67: flow list 0
20/10/2020 16:23:11              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 => RSS
20/10/2020 16:23:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:12              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x3898cdf5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:12             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-nonfrag'}

20/10/2020 16:23:12             TestCVLIAVFRSSGTPU: hash_infos: [('0x3898cdf5', '0x5')]
20/10/2020 16:23:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:13              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=590 - nb_segs=1 - RSS hash=0x3898cdf5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:23:13             TestCVLIAVFRSSGTPU: hash_infos: [('0x3898cdf5', '0x5')]
20/10/2020 16:23:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:14              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3898cdf5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:14             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-frag'}

20/10/2020 16:23:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x3898cdf5', '0x5')]
20/10/2020 16:23:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:15              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3898cdf5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:15             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:23:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x3898cdf5', '0x5')]
20/10/2020 16:23:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:16              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3898cdf5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:16             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-icmp'}

20/10/2020 16:23:16             TestCVLIAVFRSSGTPU: hash_infos: [('0x3898cdf5', '0x5')]
20/10/2020 16:23:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:18              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3898cdf5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:23:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x3898cdf5', '0x5')]
20/10/2020 16:23:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:19              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3898cdf5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:19             TestCVLIAVFRSSGTPU: action: {'save_hash': 'ipv4-udp'}

20/10/2020 16:23:19             TestCVLIAVFRSSGTPU: hash_infos: [('0x3898cdf5', '0x5')]
20/10/2020 16:23:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:20              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x3898cdf5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:20             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:23:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x3898cdf5', '0x5')]
20/10/2020 16:23:20             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:23:20              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:23:21              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:23:21              dut.10.240.183.67: flow list 0
20/10/2020 16:23:21              dut.10.240.183.67: 
20/10/2020 16:23:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:22              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0x664d3440 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:22             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-nonfrag'}

20/10/2020 16:23:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x664d3440', '0x0')]
20/10/2020 16:23:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:23              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=570 - nb_segs=1 - RSS hash=0x664d3440 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:23             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-frag'}

20/10/2020 16:23:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x664d3440', '0x0')]
20/10/2020 16:23:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:24              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x664d3440 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:24             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-icmp'}

20/10/2020 16:23:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x664d3440', '0x0')]
20/10/2020 16:23:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:25              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=578 - nb_segs=1 - RSS hash=0x664d3440 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:25             TestCVLIAVFRSSGTPU: action: {'check_no_hash_or_different': 'ipv4-udp'}

20/10/2020 16:23:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x664d3440', '0x0')]
20/10/2020 16:23:25             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_symmetric passed
20/10/2020 16:23:25              dut.10.240.183.67: flow flush 0
20/10/2020 16:23:25              dut.10.240.183.67: 
20/10/2020 16:23:25             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_ipv4_symmetric': 'passed'}
20/10/2020 16:23:25             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:23:26             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv6_symmetric Result PASSED:
20/10/2020 16:23:26              dut.10.240.183.67: flow flush 0
20/10/2020 16:23:27              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:23:27              dut.10.240.183.67: clear port stats all
20/10/2020 16:23:28              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:23:28              dut.10.240.183.67: stop
20/10/2020 16:23:28              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/Queue= 5 -------
  RX-packets: 8              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:23:28             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv6_tcp Begin
20/10/2020 16:23:28              dut.10.240.183.67: 
20/10/2020 16:23:28                         tester: 
20/10/2020 16:23:28              dut.10.240.183.67: start
20/10/2020 16:23:28              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:23:28             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_tcp_l3dst================
20/10/2020 16:23:28             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:23:28              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:23:28              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:23:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:23:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:23:28              dut.10.240.183.67: flow list 0
20/10/2020 16:23:28              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 TCP => RSS
20/10/2020 16:23:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:30              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3ac53142 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:30             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:23:30             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ac53142', '0x2')]
20/10/2020 16:23:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:31              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x8dba7db2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:31             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:23:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x8dba7db2', '0x2')]
20/10/2020 16:23:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:32              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3ac53142 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:32             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:23:32             TestCVLIAVFRSSGTPU: hash_infos: [('0x3ac53142', '0x2')]
20/10/2020 16:23:32             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:23:32              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:23:33              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:23:33              dut.10.240.183.67: flow list 0
20/10/2020 16:23:33              dut.10.240.183.67: 
20/10/2020 16:23:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:34              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x664d3440 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:34             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:23:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x664d3440', '0x0')]
20/10/2020 16:23:34             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_tcp_l3dst passed
20/10/2020 16:23:34              dut.10.240.183.67: flow flush 0
20/10/2020 16:23:34              dut.10.240.183.67: 
20/10/2020 16:23:34             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_tcp_l3src================
20/10/2020 16:23:34             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:23:34              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 16:23:34              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:23:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 16:23:34              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:23:34              dut.10.240.183.67: flow list 0
20/10/2020 16:23:34              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 TCP => RSS
20/10/2020 16:23:34             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:35              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x2be24ce5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:35             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:23:35             TestCVLIAVFRSSGTPU: hash_infos: [('0x2be24ce5', '0x5')]
20/10/2020 16:23:35             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:37              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x2be24ce5 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:37             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:23:37             TestCVLIAVFRSSGTPU: hash_infos: [('0x2be24ce5', '0x5')]
20/10/2020 16:23:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:38              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xce4ff54d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:23:38             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:23:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xce4ff54d', '0xd')]
20/10/2020 16:23:38             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:23:38              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:23:39              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:23:39              dut.10.240.183.67: flow list 0
20/10/2020 16:23:39              dut.10.240.183.67: 
20/10/2020 16:23:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:40              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x664d3440 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:40             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:23:40             TestCVLIAVFRSSGTPU: hash_infos: [('0x664d3440', '0x0')]
20/10/2020 16:23:40             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_tcp_l3src passed
20/10/2020 16:23:40              dut.10.240.183.67: flow flush 0
20/10/2020 16:23:40              dut.10.240.183.67: 
20/10/2020 16:23:40             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_tcp_l3dst_l4src================
20/10/2020 16:23:40             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:23:40              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:23:40              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:23:40              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:23:40              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:23:40              dut.10.240.183.67: flow list 0
20/10/2020 16:23:40              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 TCP => RSS
20/10/2020 16:23:40             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:41              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3eeded0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:41             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:23:41             TestCVLIAVFRSSGTPU: hash_infos: [('0x3eeded0f', '0xf')]
20/10/2020 16:23:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:42              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x8992a1ff - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:42             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:23:42             TestCVLIAVFRSSGTPU: hash_infos: [('0x8992a1ff', '0xf')]
20/10/2020 16:23:42             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:44              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xe338dc9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:44             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:23:44             TestCVLIAVFRSSGTPU: hash_infos: [('0xe338dc9', '0x9')]
20/10/2020 16:23:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:45              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x3eeded0f - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:45             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:23:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x3eeded0f', '0xf')]
20/10/2020 16:23:45             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:23:45              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:23:46              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:23:46              dut.10.240.183.67: flow list 0
20/10/2020 16:23:46              dut.10.240.183.67: 
20/10/2020 16:23:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:47              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x664d3440 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:47             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:23:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x664d3440', '0x0')]
20/10/2020 16:23:47             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_tcp_l3dst_l4src passed
20/10/2020 16:23:47              dut.10.240.183.67: flow flush 0
20/10/2020 16:23:47              dut.10.240.183.67: 
20/10/2020 16:23:47             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_tcp_l3dst_l4dst================
20/10/2020 16:23:47             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:23:47              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:23:47              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:23:47              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:23:47              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:23:47              dut.10.240.183.67: flow list 0
20/10/2020 16:23:47              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 TCP => RSS
20/10/2020 16:23:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:48              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x97568ab9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:48             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:23:48             TestCVLIAVFRSSGTPU: hash_infos: [('0x97568ab9', '0x9')]
20/10/2020 16:23:48             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:50              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x2029c649 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:50             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:23:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x2029c649', '0x9')]
20/10/2020 16:23:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:51              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xe338dc9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:23:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xe338dc9', '0x9')]
20/10/2020 16:23:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:52              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x97568ab9 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:52             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:23:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x97568ab9', '0x9')]
20/10/2020 16:23:52             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:23:52              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:23:53              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:23:53              dut.10.240.183.67: flow list 0
20/10/2020 16:23:53              dut.10.240.183.67: 
20/10/2020 16:23:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:54              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x664d3440 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:54             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:23:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x664d3440', '0x0')]
20/10/2020 16:23:54             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_tcp_l3dst_l4dst passed
20/10/2020 16:23:54              dut.10.240.183.67: flow flush 0
20/10/2020 16:23:54              dut.10.240.183.67: 
20/10/2020 16:23:54             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_tcp_l3src_l4src================
20/10/2020 16:23:54             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:23:54              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:23:54              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:23:54              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:23:54              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:23:54              dut.10.240.183.67: flow list 0
20/10/2020 16:23:54              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 TCP => RSS
20/10/2020 16:23:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:55              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x2fca90a8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:55             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:23:55             TestCVLIAVFRSSGTPU: hash_infos: [('0x2fca90a8', '0x8')]
20/10/2020 16:23:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:57              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xca672900 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:57             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:23:57             TestCVLIAVFRSSGTPU: hash_infos: [('0xca672900', '0x0')]
20/10/2020 16:23:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:58              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x1f14f06e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:58             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:23:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x1f14f06e', '0xe')]
20/10/2020 16:23:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:23:59              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x2fca90a8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:23:59             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:23:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x2fca90a8', '0x8')]
20/10/2020 16:23:59             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:23:59              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:24:00              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:24:00              dut.10.240.183.67: flow list 0
20/10/2020 16:24:00              dut.10.240.183.67: 
20/10/2020 16:24:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:01              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x664d3440 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:01             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:24:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x664d3440', '0x0')]
20/10/2020 16:24:01             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_tcp_l3src_l4src passed
20/10/2020 16:24:01              dut.10.240.183.67: flow flush 0
20/10/2020 16:24:01              dut.10.240.183.67: 
20/10/2020 16:24:01             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_tcp_l3src_l4dst================
20/10/2020 16:24:01             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:24:01              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:24:01              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:24:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:24:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:24:01              dut.10.240.183.67: flow list 0
20/10/2020 16:24:01              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 TCP => RSS
20/10/2020 16:24:01             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:02              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x8671f71e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:02             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:24:02             TestCVLIAVFRSSGTPU: hash_infos: [('0x8671f71e', '0xe')]
20/10/2020 16:24:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:04              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x63dc4eb6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:04             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:24:04             TestCVLIAVFRSSGTPU: hash_infos: [('0x63dc4eb6', '0x6')]
20/10/2020 16:24:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:05              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x1f14f06e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:05             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:24:05             TestCVLIAVFRSSGTPU: hash_infos: [('0x1f14f06e', '0xe')]
20/10/2020 16:24:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:06              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x8671f71e - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:06             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:24:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x8671f71e', '0xe')]
20/10/2020 16:24:06             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:24:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:24:07              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:24:07              dut.10.240.183.67: flow list 0
20/10/2020 16:24:07              dut.10.240.183.67: 
20/10/2020 16:24:07             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:08              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x664d3440 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:08             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 16:24:08             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_tcp_l3src_l4dst passed
20/10/2020 16:24:08              dut.10.240.183.67: flow flush 0
20/10/2020 16:24:08              dut.10.240.183.67: 
20/10/2020 16:24:08             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_tcp_l4src================
20/10/2020 16:24:08             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:24:08              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 16:24:08              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:24:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l4-src-only end key_len 0 queues end / end
20/10/2020 16:24:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:24:08              dut.10.240.183.67: flow list 0
20/10/2020 16:24:08              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 TCP => RSS
20/10/2020 16:24:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:09              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc07a9e06 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:09             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:24:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xc07a9e06', '0x6')]
20/10/2020 16:24:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:11              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xe3c6e324 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:24:11             TestCVLIAVFRSSGTPU: hash_infos: [('0xe3c6e324', '0x4')]
20/10/2020 16:24:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:12              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc07a9e06 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:12             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:24:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xc07a9e06', '0x6')]
20/10/2020 16:24:12             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:24:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:24:13              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:24:13              dut.10.240.183.67: flow list 0
20/10/2020 16:24:13              dut.10.240.183.67: 
20/10/2020 16:24:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:14              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x664d3440 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:14             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:24:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x664d3440', '0x0')]
20/10/2020 16:24:14             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_tcp_l4src passed
20/10/2020 16:24:14              dut.10.240.183.67: flow flush 0
20/10/2020 16:24:14              dut.10.240.183.67: 
20/10/2020 16:24:14             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_tcp_l4dst================
20/10/2020 16:24:14             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:24:14              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:24:14              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:24:14              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:24:14              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:24:14              dut.10.240.183.67: flow list 0
20/10/2020 16:24:14              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 TCP => RSS
20/10/2020 16:24:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:15              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4b4cfe71 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:15             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:24:15             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b4cfe71', '0x1')]
20/10/2020 16:24:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:17              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x68f08353 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:17             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:24:17             TestCVLIAVFRSSGTPU: hash_infos: [('0x68f08353', '0x3')]
20/10/2020 16:24:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:18              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x4b4cfe71 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:24:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x4b4cfe71', '0x1')]
20/10/2020 16:24:18             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:24:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:24:19              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:24:19              dut.10.240.183.67: flow list 0
20/10/2020 16:24:19              dut.10.240.183.67: 
20/10/2020 16:24:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:20              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x664d3440 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:20             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:24:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x664d3440', '0x0')]
20/10/2020 16:24:20             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_tcp_l4dst passed
20/10/2020 16:24:20              dut.10.240.183.67: flow flush 0
20/10/2020 16:24:20              dut.10.240.183.67: 
20/10/2020 16:24:20             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_tcp_all================
20/10/2020 16:24:20             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:24:20              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:24:20              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:24:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end actions rss types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:24:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:24:20              dut.10.240.183.67: flow list 0
20/10/2020 16:24:20              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 TCP => RSS
20/10/2020 16:24:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:21              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc4f8e382 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:21             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:24:21             TestCVLIAVFRSSGTPU: hash_infos: [('0xc4f8e382', '0x2')]
20/10/2020 16:24:21             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:22              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x9e8597b3 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:22             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:24:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x9e8597b3', '0x3')]
20/10/2020 16:24:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:24              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xb0c92500 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:24             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:24:24             TestCVLIAVFRSSGTPU: hash_infos: [('0xb0c92500', '0x0')]
20/10/2020 16:24:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:25              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x9445b128 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:24:25             TestCVLIAVFRSSGTPU: hash_infos: [('0x9445b128', '0x8')]
20/10/2020 16:24:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:26              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x21555a2a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:24:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x21555a2a', '0xa')]
20/10/2020 16:24:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:27              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xc4f8e382 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:24:27             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:24:27             TestCVLIAVFRSSGTPU: hash_infos: [('0xc4f8e382', '0x2')]
20/10/2020 16:24:27             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:24:27              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:24:28              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:24:28              dut.10.240.183.67: flow list 0
20/10/2020 16:24:28              dut.10.240.183.67: 
20/10/2020 16:24:28             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:29              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x664d3440 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:29             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:24:29             TestCVLIAVFRSSGTPU: hash_infos: [('0x664d3440', '0x0')]
20/10/2020 16:24:29             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_tcp_all passed
20/10/2020 16:24:29              dut.10.240.183.67: flow flush 0
20/10/2020 16:24:29              dut.10.240.183.67: 
20/10/2020 16:24:29             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_ipv6_tcp_l3dst': 'passed', 'mac_ipv6_gtpu_ipv6_tcp_l3src': 'passed', 'mac_ipv6_gtpu_ipv6_tcp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_ipv6_tcp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_ipv6_tcp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_ipv6_tcp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_ipv6_tcp_l4src': 'passed', 'mac_ipv6_gtpu_ipv6_tcp_l4dst': 'passed', 'mac_ipv6_gtpu_ipv6_tcp_all': 'passed'}
20/10/2020 16:24:29             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:24:29             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv6_tcp Result PASSED:
20/10/2020 16:24:29              dut.10.240.183.67: flow flush 0
20/10/2020 16:24:30              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:24:30              dut.10.240.183.67: clear port stats all
20/10/2020 16:24:32              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:24:32              dut.10.240.183.67: stop
20/10/2020 16:24:32              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 11             TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 0/Queue= 1 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 0/Queue= 3 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/Queue= 5 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 9 -> TX Port= 0/Queue= 9 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 0/Queue=14 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 0/Queue=15 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:24:32             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv6_tcp_symmetric Begin
20/10/2020 16:24:32              dut.10.240.183.67: 
20/10/2020 16:24:32                         tester: 
20/10/2020 16:24:32              dut.10.240.183.67: start
20/10/2020 16:24:32              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:24:32              dut.10.240.183.67: quit
20/10/2020 16:24:33              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:24:33              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:24:35              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:24:45              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:24:45              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:24:45              dut.10.240.183.67: set verbose 1
20/10/2020 16:24:45              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:24:45              dut.10.240.183.67: show port info all
20/10/2020 16:24:45              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:24:45              dut.10.240.183.67: start
20/10/2020 16:24:45              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:24:45             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_tcp_symmetric================
20/10/2020 16:24:45             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:24:45              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end  actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:24:45              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:24:45              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / tcp / end  actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:24:45              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:24:45              dut.10.240.183.67: flow list 0
20/10/2020 16:24:45              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 TCP => RSS
20/10/2020 16:24:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:46              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x9f043473 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:46             TestCVLIAVFRSSGTPU: action: {'save_hash': 'basic_with_rule'}

20/10/2020 16:24:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f043473', '0x3')]
20/10/2020 16:24:46             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:47              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x9f043473 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:47             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:24:47             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f043473', '0x3')]
20/10/2020 16:24:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:49              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x9f043473 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:49             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:24:49             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f043473', '0x3')]
20/10/2020 16:24:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:50              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0x9f043473 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:50             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:24:50             TestCVLIAVFRSSGTPU: hash_infos: [('0x9f043473', '0x3')]
20/10/2020 16:24:50             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:24:50              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:24:51              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:24:51              dut.10.240.183.67: flow list 0
20/10/2020 16:24:51              dut.10.240.183.67: 
20/10/2020 16:24:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:52              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xaefaabf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:52             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:24:52             TestCVLIAVFRSSGTPU: hash_infos: [('0xaefaabf6', '0x6')]
20/10/2020 16:24:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:53              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xaefaabf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:53             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:24:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xaefaabf6', '0x6')]
20/10/2020 16:24:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:54              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=610 - nb_segs=1 - RSS hash=0xaefaabf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:54             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:24:54             TestCVLIAVFRSSGTPU: hash_infos: [('0xaefaabf6', '0x6')]
20/10/2020 16:24:54             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_tcp_symmetric passed
20/10/2020 16:24:54              dut.10.240.183.67: flow flush 0
20/10/2020 16:24:54              dut.10.240.183.67: 
20/10/2020 16:24:54             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_ipv4_tcp_symmetric': 'passed'}
20/10/2020 16:24:54             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:24:54             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv6_tcp_symmetric Result PASSED:
20/10/2020 16:24:54              dut.10.240.183.67: flow flush 0
20/10/2020 16:24:55              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:24:55              dut.10.240.183.67: clear port stats all
20/10/2020 16:24:57              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:24:57              dut.10.240.183.67: stop
20/10/2020 16:24:57              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 0/Queue= 3 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:24:57             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv6_udp Begin
20/10/2020 16:24:57              dut.10.240.183.67: 
20/10/2020 16:24:57                         tester: 
20/10/2020 16:24:57              dut.10.240.183.67: start
20/10/2020 16:24:57              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:24:57             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_udp_l3dst================
20/10/2020 16:24:57             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:24:57              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:24:57              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:24:57              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only end key_len 0 queues end / end
20/10/2020 16:24:57              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:24:57              dut.10.240.183.67: flow list 0
20/10/2020 16:24:57              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 UDP => RSS
20/10/2020 16:24:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:58              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x5017ebe2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:24:58             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:24:58             TestCVLIAVFRSSGTPU: hash_infos: [('0x5017ebe2', '0x2')]
20/10/2020 16:24:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:24:59              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xab020d59 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:24:59             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:24:59             TestCVLIAVFRSSGTPU: hash_infos: [('0xab020d59', '0x9')]
20/10/2020 16:24:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:00              dut.10.240.183.67: port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x5017ebe2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:00             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:25:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x5017ebe2', '0x2')]
20/10/2020 16:25:00             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:25:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:25:02              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:25:02              dut.10.240.183.67: flow list 0
20/10/2020 16:25:02              dut.10.240.183.67: 
20/10/2020 16:25:02             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:03              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xaefaabf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:03             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:25:03             TestCVLIAVFRSSGTPU: hash_infos: [('0xaefaabf6', '0x6')]
20/10/2020 16:25:03             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_udp_l3dst passed
20/10/2020 16:25:03              dut.10.240.183.67: flow flush 0
20/10/2020 16:25:03              dut.10.240.183.67: 
20/10/2020 16:25:03             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_udp_l3src================
20/10/2020 16:25:03             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:25:03              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 16:25:03              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:25:03              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only end key_len 0 queues end / end
20/10/2020 16:25:03              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:25:03              dut.10.240.183.67: flow list 0
20/10/2020 16:25:03              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 UDP => RSS
20/10/2020 16:25:03             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:04              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xe6867e4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:04             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:25:04             TestCVLIAVFRSSGTPU: hash_infos: [('0xe6867e4d', '0xd')]
20/10/2020 16:25:04             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:05              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xe6867e4d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:05             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:25:05             TestCVLIAVFRSSGTPU: hash_infos: [('0xe6867e4d', '0xd')]
20/10/2020 16:25:05             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:06              dut.10.240.183.67: port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x5f807a4a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:06             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:06             TestCVLIAVFRSSGTPU: hash_infos: [('0x5f807a4a', '0xa')]
20/10/2020 16:25:06             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:25:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:25:07              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:25:07              dut.10.240.183.67: flow list 0
20/10/2020 16:25:08              dut.10.240.183.67: 
20/10/2020 16:25:08             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:09              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xaefaabf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:09             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:25:09             TestCVLIAVFRSSGTPU: hash_infos: [('0xaefaabf6', '0x6')]
20/10/2020 16:25:09             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_udp_l3src passed
20/10/2020 16:25:09              dut.10.240.183.67: flow flush 0
20/10/2020 16:25:09              dut.10.240.183.67: 
20/10/2020 16:25:09             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_udp_l3dst_l4src================
20/10/2020 16:25:09             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:25:09              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:25:09              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:25:09              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:25:09              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:25:09              dut.10.240.183.67: flow list 0
20/10/2020 16:25:09              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 UDP => RSS
20/10/2020 16:25:09             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:10              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xdfb1aafe - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:10             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:25:10             TestCVLIAVFRSSGTPU: hash_infos: [('0xdfb1aafe', '0xe')]
20/10/2020 16:25:10             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:11              dut.10.240.183.67: port 0/queue 5: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x24a44c45 - RSS queue=0x5 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:11             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:11             TestCVLIAVFRSSGTPU: hash_infos: [('0x24a44c45', '0x5')]
20/10/2020 16:25:11             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:12              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xd5e74870 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:12             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:12             TestCVLIAVFRSSGTPU: hash_infos: [('0xd5e74870', '0x0')]
20/10/2020 16:25:12             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:13              dut.10.240.183.67: port 0/queue 14: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xdfb1aafe - RSS queue=0xe - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xe
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:13             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:25:13             TestCVLIAVFRSSGTPU: hash_infos: [('0xdfb1aafe', '0xe')]
20/10/2020 16:25:13             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:25:13              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:25:14              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:25:14              dut.10.240.183.67: flow list 0
20/10/2020 16:25:15              dut.10.240.183.67: 
20/10/2020 16:25:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:16              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xaefaabf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:16             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:25:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xaefaabf6', '0x6')]
20/10/2020 16:25:16             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_udp_l3dst_l4src passed
20/10/2020 16:25:16              dut.10.240.183.67: flow flush 0
20/10/2020 16:25:16              dut.10.240.183.67: 
20/10/2020 16:25:16             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_udp_l3dst_l4dst================
20/10/2020 16:25:16             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:25:16              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:25:16              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:25:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-dst-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:25:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:25:16              dut.10.240.183.67: flow list 0
20/10/2020 16:25:16              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 UDP => RSS
20/10/2020 16:25:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:17              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xf325a970 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:17             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:25:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xf325a970', '0x0')]
20/10/2020 16:25:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:18              dut.10.240.183.67: port 0/queue 11: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x8304fcb - RSS queue=0xb - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xb
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:18             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:18             TestCVLIAVFRSSGTPU: hash_infos: [('0x8304fcb', '0xb')]
20/10/2020 16:25:18             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:19              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xd5e74870 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:19             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:19             TestCVLIAVFRSSGTPU: hash_infos: [('0xd5e74870', '0x0')]
20/10/2020 16:25:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:20              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xf325a970 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:20             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:25:20             TestCVLIAVFRSSGTPU: hash_infos: [('0xf325a970', '0x0')]
20/10/2020 16:25:20             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:25:20              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:25:21              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:25:21              dut.10.240.183.67: flow list 0
20/10/2020 16:25:22              dut.10.240.183.67: 
20/10/2020 16:25:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:23              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xaefaabf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:23             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:25:23             TestCVLIAVFRSSGTPU: hash_infos: [('0xaefaabf6', '0x6')]
20/10/2020 16:25:23             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_udp_l3dst_l4dst passed
20/10/2020 16:25:23              dut.10.240.183.67: flow flush 0
20/10/2020 16:25:23              dut.10.240.183.67: 
20/10/2020 16:25:23             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_udp_l3src_l4src================
20/10/2020 16:25:23             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:25:23              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:25:23              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:25:23              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:25:23              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:25:23              dut.10.240.183.67: flow list 0
20/10/2020 16:25:23              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 UDP => RSS
20/10/2020 16:25:23             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:24              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x69203f51 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:24             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:25:24             TestCVLIAVFRSSGTPU: hash_infos: [('0x69203f51', '0x1')]
20/10/2020 16:25:24             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:25              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xd0263b56 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:25             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:25             TestCVLIAVFRSSGTPU: hash_infos: [('0xd0263b56', '0x6')]
20/10/2020 16:25:25             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:26              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x6376dddf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:26             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:26             TestCVLIAVFRSSGTPU: hash_infos: [('0x6376dddf', '0xf')]
20/10/2020 16:25:26             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:27              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x69203f51 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:27             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:25:27             TestCVLIAVFRSSGTPU: hash_infos: [('0x69203f51', '0x1')]
20/10/2020 16:25:27             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:25:27              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:25:29              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:25:29              dut.10.240.183.67: flow list 0
20/10/2020 16:25:29              dut.10.240.183.67: 
20/10/2020 16:25:29             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:30              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xaefaabf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:30             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:25:30             TestCVLIAVFRSSGTPU: hash_infos: [('0xaefaabf6', '0x6')]
20/10/2020 16:25:30             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_udp_l3src_l4src passed
20/10/2020 16:25:30              dut.10.240.183.67: flow flush 0
20/10/2020 16:25:30              dut.10.240.183.67: 
20/10/2020 16:25:30             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_udp_l3src_l4dst================
20/10/2020 16:25:30             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:25:30              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:25:30              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:25:30              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l3-src-only l4-dst-only end key_len 0 queues end / end
20/10/2020 16:25:30              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:25:30              dut.10.240.183.67: flow list 0
20/10/2020 16:25:30              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 UDP => RSS
20/10/2020 16:25:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:31              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x45b43cdf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:31             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:25:31             TestCVLIAVFRSSGTPU: hash_infos: [('0x45b43cdf', '0xf')]
20/10/2020 16:25:31             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:32              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xfcb238d8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:32             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:32             TestCVLIAVFRSSGTPU: hash_infos: [('0xfcb238d8', '0x8')]
20/10/2020 16:25:32             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:33              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x6376dddf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:33             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:33             TestCVLIAVFRSSGTPU: hash_infos: [('0x6376dddf', '0xf')]
20/10/2020 16:25:33             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:34              dut.10.240.183.67: port 0/queue 15: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x45b43cdf - RSS queue=0xf - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xf
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:34             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:25:34             TestCVLIAVFRSSGTPU: hash_infos: [('0x45b43cdf', '0xf')]
20/10/2020 16:25:34             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:25:34              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:25:36              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:25:36              dut.10.240.183.67: flow list 0
20/10/2020 16:25:36              dut.10.240.183.67: 
20/10/2020 16:25:36             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:37              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xaefaabf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:37             TestCVLIAVFRSSGTPU: action: check_no_hash_different

20/10/2020 16:25:37             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_udp_l3src_l4dst passed
20/10/2020 16:25:37              dut.10.240.183.67: flow flush 0
20/10/2020 16:25:37              dut.10.240.183.67: 
20/10/2020 16:25:37             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_udp_l4src================
20/10/2020 16:25:37             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:25:37              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 16:25:37              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:25:37              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l4-src-only end key_len 0 queues end / end
20/10/2020 16:25:37              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:25:37              dut.10.240.183.67: flow list 0
20/10/2020 16:25:37              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 UDP => RSS
20/10/2020 16:25:37             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:38              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xc2e34068 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:38             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:25:38             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e34068', '0x8')]
20/10/2020 16:25:38             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:39              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xdfd444b1 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:39             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:39             TestCVLIAVFRSSGTPU: hash_infos: [('0xdfd444b1', '0x1')]
20/10/2020 16:25:39             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:40              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xc2e34068 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:40             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:25:40             TestCVLIAVFRSSGTPU: hash_infos: [('0xc2e34068', '0x8')]
20/10/2020 16:25:40             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:25:40              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:25:41              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:25:41              dut.10.240.183.67: flow list 0
20/10/2020 16:25:41              dut.10.240.183.67: 
20/10/2020 16:25:41             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:43              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xaefaabf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:43             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:25:43             TestCVLIAVFRSSGTPU: hash_infos: [('0xaefaabf6', '0x6')]
20/10/2020 16:25:43             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_udp_l4src passed
20/10/2020 16:25:43              dut.10.240.183.67: flow flush 0
20/10/2020 16:25:43              dut.10.240.183.67: 
20/10/2020 16:25:43             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_udp_l4dst================
20/10/2020 16:25:43             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:25:43              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:25:43              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:25:43              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:25:43              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:25:43              dut.10.240.183.67: flow list 0
20/10/2020 16:25:43              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 UDP => RSS
20/10/2020 16:25:43             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:44              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x30e9e5f8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:44             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:25:44             TestCVLIAVFRSSGTPU: hash_infos: [('0x30e9e5f8', '0x8')]
20/10/2020 16:25:44             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:45              dut.10.240.183.67: port 0/queue 1: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x2ddee121 - RSS queue=0x1 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x1
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:45             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:45             TestCVLIAVFRSSGTPU: hash_infos: [('0x2ddee121', '0x1')]
20/10/2020 16:25:45             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:46              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x30e9e5f8 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:46             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:25:46             TestCVLIAVFRSSGTPU: hash_infos: [('0x30e9e5f8', '0x8')]
20/10/2020 16:25:46             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:25:46              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:25:47              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:25:47              dut.10.240.183.67: flow list 0
20/10/2020 16:25:47              dut.10.240.183.67: 
20/10/2020 16:25:47             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:49              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xaefaabf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:49             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:25:49             TestCVLIAVFRSSGTPU: hash_infos: [('0xaefaabf6', '0x6')]
20/10/2020 16:25:49             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_udp_l4dst passed
20/10/2020 16:25:49              dut.10.240.183.67: flow flush 0
20/10/2020 16:25:49              dut.10.240.183.67: 
20/10/2020 16:25:49             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv6_udp_all================
20/10/2020 16:25:49             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:25:49              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 16:25:49              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:25:49              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 16:25:49              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:25:49              dut.10.240.183.67: flow list 0
20/10/2020 16:25:49              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 UDP => RSS
20/10/2020 16:25:49             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:50              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xb95ca204 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:50             TestCVLIAVFRSSGTPU: action: save_hash

20/10/2020 16:25:50             TestCVLIAVFRSSGTPU: hash_infos: [('0xb95ca204', '0x4')]
20/10/2020 16:25:50             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:51              dut.10.240.183.67: port 0/queue 9: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xa4d08679 - RSS queue=0x9 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x9
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:51             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:51             TestCVLIAVFRSSGTPU: hash_infos: [('0xa4d08679', '0x9')]
20/10/2020 16:25:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:52              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x9d21c290 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:25:52             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x9d21c290', '0x0')]
20/10/2020 16:25:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:53              dut.10.240.183.67: port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xe050f9cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:53             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:53             TestCVLIAVFRSSGTPU: hash_infos: [('0xe050f9cd', '0xd')]
20/10/2020 16:25:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:54              dut.10.240.183.67: port 0/queue 3: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x5aa603 - RSS queue=0x3 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:54             TestCVLIAVFRSSGTPU: action: check_hash_different

20/10/2020 16:25:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x5aa603', '0x3')]
20/10/2020 16:25:54             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:55              dut.10.240.183.67: port 0/queue 4: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xb95ca204 - RSS queue=0x4 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 291 - 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 

20/10/2020 16:25:55             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:25:55             TestCVLIAVFRSSGTPU: hash_infos: [('0xb95ca204', '0x4')]
20/10/2020 16:25:55             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:25:55              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:25:57              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:25:57              dut.10.240.183.67: flow list 0
20/10/2020 16:25:57              dut.10.240.183.67: 
20/10/2020 16:25:57             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:25:58              dut.10.240.183.67: port 0/queue 6: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xaefaabf6 - RSS queue=0x6 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:25:58             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:25:58             TestCVLIAVFRSSGTPU: hash_infos: [('0xaefaabf6', '0x6')]
20/10/2020 16:25:58             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv6_udp_all passed
20/10/2020 16:25:58              dut.10.240.183.67: flow flush 0
20/10/2020 16:25:58              dut.10.240.183.67: 
20/10/2020 16:25:58             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_ipv6_udp_l3dst': 'passed', 'mac_ipv6_gtpu_ipv6_udp_l3src': 'passed', 'mac_ipv6_gtpu_ipv6_udp_l3dst_l4src': 'passed', 'mac_ipv6_gtpu_ipv6_udp_l3dst_l4dst': 'passed', 'mac_ipv6_gtpu_ipv6_udp_l3src_l4src': 'passed', 'mac_ipv6_gtpu_ipv6_udp_l3src_l4dst': 'passed', 'mac_ipv6_gtpu_ipv6_udp_l4src': 'passed', 'mac_ipv6_gtpu_ipv6_udp_l4dst': 'passed', 'mac_ipv6_gtpu_ipv6_udp_all': 'passed'}
20/10/2020 16:25:58             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:25:58             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv6_udp Result PASSED:
20/10/2020 16:25:58              dut.10.240.183.67: flow flush 0
20/10/2020 16:25:59              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:25:59              dut.10.240.183.67: clear port stats all
20/10/2020 16:26:00              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:26:00              dut.10.240.183.67: stop
20/10/2020 16:26:00              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 1 -> TX Port= 0/Queue= 1 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 3 -> TX Port= 0/Queue= 3 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 4 -> TX Port= 0/Queue= 4 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 5 -> TX Port= 0/Queue= 5 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 6 -> TX Port= 0/Queue= 6 -------
  RX-packets: 10             TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  RX-packets: 5              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 9 -> TX Port= 0/Queue= 9 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=11 -> TX Port= 0/Queue=11 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=14 -> TX Port= 0/Queue=14 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=15 -> TX Port= 0/Queue=15 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:26:00             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv6_udp_symmetric Begin
20/10/2020 16:26:00              dut.10.240.183.67: 
20/10/2020 16:26:00                         tester: 
20/10/2020 16:26:00              dut.10.240.183.67: start
20/10/2020 16:26:00              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:26:00              dut.10.240.183.67: quit
20/10/2020 16:26:02              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:26:02              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:26:03              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:26:13              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:26:13              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:26:13              dut.10.240.183.67: set verbose 1
20/10/2020 16:26:13              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:26:13              dut.10.240.183.67: show port info all
20/10/2020 16:26:13              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:26:13              dut.10.240.183.67: start
20/10/2020 16:26:13              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:26:13             TestCVLIAVFRSSGTPU: ===================Test sub case: mac_ipv6_gtpu_ipv4_udp_symmetric================
20/10/2020 16:26:13             TestCVLIAVFRSSGTPU: ------------handle test--------------
20/10/2020 16:26:13              dut.10.240.183.67: flow validate 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss func symmetric_toeplitz types ipv6-udp end key_len 0 queues end / end
20/10/2020 16:26:14              dut.10.240.183.67: 
Flow rule validated
20/10/2020 16:26:14              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv6 / udp / gtpu / ipv6 / udp / end actions rss func symmetric_toeplitz types ipv6-udp end key_len 0 queues end / end
20/10/2020 16:26:14              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:14              dut.10.240.183.67: flow list 0
20/10/2020 16:26:14              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV6 UDP GTPU IPV6 UDP => RSS
20/10/2020 16:26:14             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:26:15              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xdb1754dc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:26:15             TestCVLIAVFRSSGTPU: action: {'save_hash': 'basic_with_rule'}

20/10/2020 16:26:15             TestCVLIAVFRSSGTPU: hash_infos: [('0xdb1754dc', '0xc')]
20/10/2020 16:26:15             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:26:16              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xdb1754dc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:26:16             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:26:16             TestCVLIAVFRSSGTPU: hash_infos: [('0xdb1754dc', '0xc')]
20/10/2020 16:26:16             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:26:17              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xdb1754dc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:26:17             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:26:17             TestCVLIAVFRSSGTPU: hash_infos: [('0xdb1754dc', '0xc')]
20/10/2020 16:26:17             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:26:18              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0xdb1754dc - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:26:18             TestCVLIAVFRSSGTPU: action: check_hash_same

20/10/2020 16:26:18             TestCVLIAVFRSSGTPU: hash_infos: [('0xdb1754dc', '0xc')]
20/10/2020 16:26:18             TestCVLIAVFRSSGTPU: ------------handle post-test--------------
20/10/2020 16:26:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:19              dut.10.240.183.67: 
Flow rule #0 destroyed
testpmd> 
20/10/2020 16:26:19              dut.10.240.183.67: flow list 0
20/10/2020 16:26:19              dut.10.240.183.67: 
20/10/2020 16:26:19             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:26:20              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x20dbac48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:26:20             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:26:20             TestCVLIAVFRSSGTPU: hash_infos: [('0x20dbac48', '0x8')]
20/10/2020 16:26:20             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:26:22              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x20dbac48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:26:22             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:26:22             TestCVLIAVFRSSGTPU: hash_infos: [('0x20dbac48', '0x8')]
20/10/2020 16:26:22             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:26:23              dut.10.240.183.67: port 0/queue 8: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x86dd - length=598 - nb_segs=1 - RSS hash=0x20dbac48 - RSS queue=0x8 - hw ptype: L2_ETHER L3_IPV6_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV6_EXT_UNKNOWN INNER_L4_UDP  - sw ptype: L2_ETHER L3_IPV6 L4_UDP  - l2_len=14 - l3_len=40 - l4_len=8 - VXLAN packet: packet type =32993, Destination UDP port =2152, VNI = 4660 - Receive queue=0x8
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:26:23             TestCVLIAVFRSSGTPU: action: check_no_hash_or_different

20/10/2020 16:26:23             TestCVLIAVFRSSGTPU: hash_infos: [('0x20dbac48', '0x8')]
20/10/2020 16:26:23             TestCVLIAVFRSSGTPU: sub_case mac_ipv6_gtpu_ipv4_udp_symmetric passed
20/10/2020 16:26:23              dut.10.240.183.67: flow flush 0
20/10/2020 16:26:23              dut.10.240.183.67: 
20/10/2020 16:26:23             TestCVLIAVFRSSGTPU: {'mac_ipv6_gtpu_ipv4_udp_symmetric': 'passed'}
20/10/2020 16:26:23             TestCVLIAVFRSSGTPU: pass rate is: 100.0
20/10/2020 16:26:23             TestCVLIAVFRSSGTPU: Test Case test_mac_ipv6_gtpu_ipv6_udp_symmetric Result PASSED:
20/10/2020 16:26:23              dut.10.240.183.67: flow flush 0
20/10/2020 16:26:24              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:26:24              dut.10.240.183.67: clear port stats all
20/10/2020 16:26:25              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:26:25              dut.10.240.183.67: stop
20/10/2020 16:26:25              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 8 -> TX Port= 0/Queue= 8 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 0/Queue=12 -------
  RX-packets: 4              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:26:25             TestCVLIAVFRSSGTPU: Test Case test_multirules Begin
20/10/2020 16:26:25              dut.10.240.183.67: 
20/10/2020 16:26:25                         tester: 
20/10/2020 16:26:25              dut.10.240.183.67: start
20/10/2020 16:26:25              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:26:25              dut.10.240.183.67: quit
20/10/2020 16:26:27              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:26:27              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:26:28              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:26:38              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:26:38              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:26:38              dut.10.240.183.67: set verbose 1
20/10/2020 16:26:38              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:26:38              dut.10.240.183.67: show port info all
20/10/2020 16:26:38              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:26:38              dut.10.240.183.67: start
20/10/2020 16:26:38              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:26:38             TestCVLIAVFRSSGTPU: Subcase: IPV4_GTPU_IPV4/IPV4_GTPU_EH_IPV4
20/10/2020 16:26:38             TestCVLIAVFRSSGTPU: Subcase: IPV4_GTPU_EH_IPV4 with/without UL/DL
20/10/2020 16:26:38             TestCVLIAVFRSSGTPU: Subcase: IPV4_GTPU_EH_IPV4 without/with UL/DL
20/10/2020 16:26:38             TestCVLIAVFRSSGTPU: Subcase: IPV4_GTPU_EH_IPV4 and IPV4_GTPU_EH_IPV4_UDP
20/10/2020 16:26:38             TestCVLIAVFRSSGTPU: Subcase: IPV6_GTPU_EH_IPV6 and IPV6_GTPU_EH_IPV6_TCP
20/10/2020 16:26:38             TestCVLIAVFRSSGTPU: Subcase: IPV4_GTPU_EH_IPV6 and IPV4_GTPU_EH_IPV6_UDP without UL/DL
20/10/2020 16:26:38             TestCVLIAVFRSSGTPU: Subcase: IPV6_GTPU_IPV4 and IPV6_GTPU_IPV4_TCP
20/10/2020 16:26:38             TestCVLIAVFRSSGTPU: Test Case test_multirules Result PASSED:
20/10/2020 16:26:38              dut.10.240.183.67: flow flush 0
20/10/2020 16:26:39              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:26:39              dut.10.240.183.67: clear port stats all
20/10/2020 16:26:41              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:26:41              dut.10.240.183.67: stop
20/10/2020 16:26:41              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:26:41             TestCVLIAVFRSSGTPU: Test Case test_negative_cases Begin
20/10/2020 16:26:41              dut.10.240.183.67: 
20/10/2020 16:26:41                         tester: 
20/10/2020 16:26:41              dut.10.240.183.67: start
20/10/2020 16:26:41              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:26:41              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4-tcp end key_len 0 queues end / end
20/10/2020 16:26:41              dut.10.240.183.67: 
iavf_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument
20/10/2020 16:26:41              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv6-udp end key_len 0 queues end / end
20/10/2020 16:26:41              dut.10.240.183.67: 
iavf_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument
20/10/2020 16:26:41              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types ipv4 end key_len 0 queues end / end
20/10/2020 16:26:41              dut.10.240.183.67: 
iavf_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument
20/10/2020 16:26:41              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 gtpu end key_len 0 queues end / end
20/10/2020 16:26:41              dut.10.240.183.67: 
iavf_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument
20/10/2020 16:26:41              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / udp / end actions rss types udp end key_len 0 queues end / end
20/10/2020 16:26:41              dut.10.240.183.67: 
iavf_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument
20/10/2020 16:26:41             TestCVLIAVFRSSGTPU: Test Case test_negative_cases Result PASSED:
20/10/2020 16:26:41              dut.10.240.183.67: flow flush 0
20/10/2020 16:26:42              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:26:42              dut.10.240.183.67: clear port stats all
20/10/2020 16:26:44              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:26:44              dut.10.240.183.67: stop
20/10/2020 16:26:44              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:26:44             TestCVLIAVFRSSGTPU: Test Case test_stress_cases Begin
20/10/2020 16:26:44              dut.10.240.183.67: 
20/10/2020 16:26:44                         tester: 
20/10/2020 16:26:44              dut.10.240.183.67: start
20/10/2020 16:26:44              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:26:44              dut.10.240.183.67: quit
20/10/2020 16:26:45              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
Done

Bye...
20/10/2020 16:26:45              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:26:47              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:26:57              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:26:57              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:26:57              dut.10.240.183.67: set verbose 1
20/10/2020 16:26:57              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:26:57              dut.10.240.183.67: show port info all
20/10/2020 16:26:57              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:26:57              dut.10.240.183.67: start
20/10/2020 16:26:57              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:26:57              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:57              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:57              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:57              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:57              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:57              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:57              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:57              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:57              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:57              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:57              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:57              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:57              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:57              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:57              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:57              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:57              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:58              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:58              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:59              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:59              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:59              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:59              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:59              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:59              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:59              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:59              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:59              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:59              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:59              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:59              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:59              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:59              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:59              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:59              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:59              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:59              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:59              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:59              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:59              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:59              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:26:59              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:26:59              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:26:59              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:26:59              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:00              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:00              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:00              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:00              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:00              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:00              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:00              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:00              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:00              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:01              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:01              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:01              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:01              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:01              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:01              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:01              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:01              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:01              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:01              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:02              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:02              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:02              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:02              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:02              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:02              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:02              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:02              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:02              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:02              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:02              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:02              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:02              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:02              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:02              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:03              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:03              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:03              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:03              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:03              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:03              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:03              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:03              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:03              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:03              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:03              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:03              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:03              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:03              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:03              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:03              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:03              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:03              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:03              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:03              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:03              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:04              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:04              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:04              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:04              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:04              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:04              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:04              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:04              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:04              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:04              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:04              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:04              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:04              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:04              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:04              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:04              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:04              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:04              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:04              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:04              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:04              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:04              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:04              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:04              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:05              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:05              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:05              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:05              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:05              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:05              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:05              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:05              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:05              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:06              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:06              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:06              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:06              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:06              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:06              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:06              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:06              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:06              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:06              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:06              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:06              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:06              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:06              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:06              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:06              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:06              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:06              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:06              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:07              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:07              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:07              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:07              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:07              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:07              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:07              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:07              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:07              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:07              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:07              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:07              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:07              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:07              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:07              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:07              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:07              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:07              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:07              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:07              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:07              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:07              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:07              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:07              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:07              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:07              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:08              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:08              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:08              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:08              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:08              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:08              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:08              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:08              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:08              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:08              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:08              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:08              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:08              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:08              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:09              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:09              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:09              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:09              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:09              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:09              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:09              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:09              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:09              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:09              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:09              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:09              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:09              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:09              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:09              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:09              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:09              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:09              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:09              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:10              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:10              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:10              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:10              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:10              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:10              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:10              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:10              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:10              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:10              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:10              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:10              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:10              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:10              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:10              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:10              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:10              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:10              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:10              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:10              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:10              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:10              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:11              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:11              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:11              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:11              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:11              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:11              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:11              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:11              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:11              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:11              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:11              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:11              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:11              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:11              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:12              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:12              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:12              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:12              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:12              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:12              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:12              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:12              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:12              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:13              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:13              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:13              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:13              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:13              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:13              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss types ipv4-tcp l3-src-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:13              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:13              dut.10.240.183.67: flow list 0
20/10/2020 16:27:13              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 TCP => RSS
20/10/2020 16:27:13             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:27:14              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x6f880270 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 10: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x961dce9a - RSS queue=0xa - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xa
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x89853bc7 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=582 - nb_segs=1 - RSS hash=0x6f880270 - RSS queue=0x0 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_TCP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x0
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:27:14             TestCVLIAVFRSSGTPU: hash_infos: [('0x6f880270', '0x0'), ('0x961dce9a', '0xa'), ('0x89853bc7', '0x7'), ('0x6f880270', '0x0')]
20/10/2020 16:27:14              dut.10.240.183.67: flow flush 0
20/10/2020 16:27:14              dut.10.240.183.67: 
20/10/2020 16:27:14              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:14              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:14              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:14              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:14              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:14              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:14              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:14              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:14              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:14              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:14              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:15              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:15              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:15              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:15              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:15              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:15              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:15              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:15              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:15              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:15              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:15              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:15              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:15              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:15              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:15              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:15              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:15              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:15              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:15              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:15              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:15              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:15              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:15              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:15              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:16              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:16              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:16              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:16              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:16              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:16              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:16              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:16              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:16              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:16              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:17              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:17              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:17              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:17              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:17              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:17              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:17              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:17              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:17              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:17              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:17              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:17              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:17              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:17              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:18              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:18              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:18              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:18              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:18              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:18              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:18              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:18              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:18              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:18              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:18              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:18              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:18              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:18              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:19              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:19              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:19              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:19              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:19              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:19              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:19              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:19              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:19              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:19              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:19              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:19              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:19              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:19              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:19              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:20              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:20              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:20              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:20              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:20              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:20              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:20              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:20              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:20              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:20              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:20              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:20              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:20              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:20              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:21              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:21              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:21              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:21              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:21              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:21              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:21              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:21              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:21              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:21              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:21              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:21              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:21              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:21              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:21              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:21              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:21              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:21              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:21              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:21              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:21              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:21              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:21              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:21              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:21              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:21              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:22              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:22              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:22              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:22              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:22              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:22              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:22              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:22              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:22              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:22              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:22              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:22              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:22              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:22              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:22              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:22              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:22              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:22              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:22              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:22              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:22              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:22              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:22              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:22              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:23              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:23              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:23              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:23              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:23              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:23              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:23              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:23              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:23              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:23              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:23              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:23              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:23              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:23              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:23              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:23              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:23              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:23              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:23              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:24              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:24              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:24              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:24              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:24              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:24              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:24              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:24              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:24              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:24              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:25              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:25              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:25              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:25              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:25              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:25              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:25              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:25              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:25              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:25              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:25              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:25              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:25              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:25              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:25              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:25              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:25              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:25              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:25              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:25              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:25              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:25              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:25              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:25              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:26              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:26              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:26              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:26              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:26              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:26              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:26              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:26              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:26              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:27              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:27              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:27              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:27              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:27              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:27              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:27              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:27              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:27              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:27              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:27              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:27              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:27              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:27              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:27              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:27              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:27              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:27              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:27              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:27              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:28              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:28              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:28              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:28              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:28              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:28              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:28              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:28              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:28              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:29              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:29              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:29              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:29              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:29              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:29              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:29              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:29              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:29              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:29              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:29              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:29              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:29              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:29              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:29              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:29              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:29              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:29              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:29              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:29              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:29              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:29              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:29              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:29              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:29              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:29              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:30              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:30              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:30              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:30              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:30              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:30              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:30              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:30              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:30              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:30              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:30              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:30              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:30              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:30              dut.10.240.183.67: flow destroy 0 rule 0
20/10/2020 16:27:30              dut.10.240.183.67: 
Flow rule #0 destroyed
20/10/2020 16:27:30              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:30              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:30              dut.10.240.183.67: flow list 0
20/10/2020 16:27:30              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 16:27:30             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:27:31              dut.10.240.183.67: port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xd3ee0367 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 2: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xf3faf2 - RSS queue=0x2 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0xd3ee0367 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 291 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:27:31             TestCVLIAVFRSSGTPU: hash_infos: [('0xd3ee0367', '0x7'), ('0xf3faf2', '0x2'), ('0xd3ee0367', '0x7')]
20/10/2020 16:27:31             TestCVLIAVFRSSGTPU: Test Case test_stress_cases Result PASSED:
20/10/2020 16:27:31              dut.10.240.183.67: flow flush 0
20/10/2020 16:27:33              dut.10.240.183.67: 
testpmd> 
20/10/2020 16:27:33              dut.10.240.183.67: clear port stats all
20/10/2020 16:27:34              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:27:34              dut.10.240.183.67: stop
20/10/2020 16:27:34              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 2              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 2 -> TX Port= 0/Queue= 2 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 7 -> TX Port= 0/Queue= 7 -------
  RX-packets: 3              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=10 -> TX Port= 0/Queue=10 -------
  RX-packets: 1              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:27:34             TestCVLIAVFRSSGTPU: Test Case test_symmetric_negative_cases Begin
20/10/2020 16:27:34              dut.10.240.183.67: 
20/10/2020 16:27:34                         tester: 
20/10/2020 16:27:34              dut.10.240.183.67: start
20/10/2020 16:27:34              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:27:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types gtpu end key_len 0 queues end / end
20/10/2020 16:27:34              dut.10.240.183.67: 
iavf_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument
20/10/2020 16:27:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:34              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 16:27:34              dut.10.240.183.67: 
iavf_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument
20/10/2020 16:27:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-udp end key_len 0 queues end / end
20/10/2020 16:27:34              dut.10.240.183.67: 
iavf_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument
20/10/2020 16:27:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 16:27:34              dut.10.240.183.67: 
iavf_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument
20/10/2020 16:27:34              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv6-tcp end key_len 0 queues end / end
20/10/2020 16:27:35              dut.10.240.183.67: 
iavf_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument
20/10/2020 16:27:35              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types tcp end key_len 0 queues end / end
20/10/2020 16:27:35              dut.10.240.183.67: 
iavf_flow_create(): Failed to create flow
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument
20/10/2020 16:27:35              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp l3-src-only end key_len 0 queues end / end
20/10/2020 16:27:35              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 16:27:35              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp l4-dst-only end key_len 0 queues end / end
20/10/2020 16:27:35              dut.10.240.183.67: 
Flow rule #2 created
20/10/2020 16:27:35              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / tcp / end actions rss func symmetric_toeplitz types ipv4-tcp l3-dst-only l4-src-only end key_len 0 queues end / end
20/10/2020 16:27:35              dut.10.240.183.67: 
Flow rule #3 created
20/10/2020 16:27:35             TestCVLIAVFRSSGTPU: Test Case test_symmetric_negative_cases Result FAILED: "all rules should create failed, result [False, '0', False, False, False, False, False, '1', '2', '3']"
20/10/2020 16:27:35              dut.10.240.183.67: flow flush 0
20/10/2020 16:27:36              dut.10.240.183.67: 
iavf_execute_vf_cmd(): No response or return failure (-5) for cmd 46
iavf_add_del_rss_cfg(): Failed to execute command of OP_DEL_RSS_INPUT_CFG
iavf_hash_destroy(): fail to del RSS configure
iavf_flow_destroy(): Failed to destroy flow
iavf_flow_flush(): Failed to flush flows
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to delete rss rule.: Operation not permitted
testpmd> 
20/10/2020 16:27:36              dut.10.240.183.67: clear port stats all
20/10/2020 16:27:37              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:27:37              dut.10.240.183.67: stop
20/10/2020 16:27:37              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:27:37             TestCVLIAVFRSSGTPU: Test Case test_toeplitz_symmetric_combination Begin
20/10/2020 16:27:37              dut.10.240.183.67: 
20/10/2020 16:27:37                         tester: 
20/10/2020 16:27:37              dut.10.240.183.67: start
20/10/2020 16:27:38              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:27:38              dut.10.240.183.67: quit
20/10/2020 16:27:39              dut.10.240.183.67: 
Telling cores to stop...
Waiting for lcores to finish...

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.

Stopping port 0...
Stopping ports...
Done

Shutting down port 0...
Closing ports...
iavf_execute_vf_cmd(): No response or return failure (-5) for cmd 46
iavf_add_del_rss_cfg(): Failed to execute command of OP_DEL_RSS_INPUT_CFG
iavf_hash_destroy(): fail to del RSS configure
iavf_flow_destroy(): Failed to destroy flow
iavf_flow_flush(): Failed to flush flows
Done

Bye...
20/10/2020 16:27:39              dut.10.240.183.67: x86_64-native-linuxapp-gcc/app/dpdk-testpmd  -l 1,2,3,4 -n 4 -w 0000:18:01.0  --file-prefix=dpdk_324726_20201020151031    -- -i --rxq=16 --txq=16
20/10/2020 16:27:40              dut.10.240.183.67: EAL: Detected 72 lcore(s)
EAL: Detected 2 NUMA nodes
EAL: Multi-process socket /var/run/dpdk/dpdk_324726_20201020151031/mp_socket
EAL: Selected IOVA mode 'VA'
EAL: Probing VFIO support...
EAL: VFIO support initialized
EAL:   using IOMMU type 1 (Type 1)
EAL: Probe PCI driver: net_iavf (8086:1889) device: 0000:18:01.0 (socket 0)
iavf_read_msg_from_pf(): command mismatch, expect 44, get 17
EAL: No legacy callbacks, legacy socket not created
Interactive-mode selected
testpmd: create a new mbuf pool <mbuf_pool_socket_0>: n=171456, size=2176, socket=0
testpmd: preferred mempool ops selected: ring_mp_mc

Warning! port-topology=paired and odd forward ports number, the last port will pair with itself.

Configuring Port 0 (socket 0)
iavf_configure_queues(): request RXDID == 22 in Queue[0]
iavf_configure_queues(): request RXDID == 22 in Queue[1]
iavf_configure_queues(): request RXDID == 22 in Queue[2]
iavf_configure_queues(): request RXDID == 22 in Queue[3]
iavf_configure_queues(): request RXDID == 22 in Queue[4]
iavf_configure_queues(): request RXDID == 22 in Queue[5]
iavf_configure_queues(): request RXDID == 22 in Queue[6]
iavf_configure_queues(): request RXDID == 22 in Queue[7]
iavf_configure_queues(): request RXDID == 22 in Queue[8]
iavf_configure_queues(): request RXDID == 22 in Queue[9]
iavf_configure_queues(): request RXDID == 22 in Queue[10]
iavf_configure_queues(): request RXDID == 22 in Queue[11]
iavf_configure_queues(): request RXDID == 22 in Queue[12]
iavf_configure_queues(): request RXDID == 22 in Queue[13]
iavf_configure_queues(): request RXDID == 22 in Queue[14]
iavf_configure_queues(): request RXDID == 22 in Queue[15]

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event

Port 0: link state change event
Port 0: 00:11:22:33:44:55
Checking link statuses...
Done
20/10/2020 16:27:50              dut.10.240.183.67: set fwd rxonly
20/10/2020 16:27:50              dut.10.240.183.67: 
Set rxonly packet forwarding mode
20/10/2020 16:27:50              dut.10.240.183.67: set verbose 1
20/10/2020 16:27:50              dut.10.240.183.67: 
Change verbose level from 0 to 1
20/10/2020 16:27:50              dut.10.240.183.67: show port info all
20/10/2020 16:27:50              dut.10.240.183.67: 

********************* Infos for port 0  *********************
MAC address: 00:11:22:33:44:55
Device name: 0000:18:01.0
Driver name: net_iavf
Firmware-version: not available
Devargs: 
Connect to socket: 0
memory allocation on the socket: 0
Link status: up
Link speed: 10000 Mbps
Link duplex: full-duplex
MTU: 1500
Promiscuous mode: enabled
Allmulticast mode: disabled
Maximum number of MAC addresses: 64
Maximum number of MAC addresses of hash filtering: 0
VLAN offload: 
  strip off, filter off, extend off, qinq strip off
Hash key size in bytes: 52
Redirection table size: 64
Supported RSS offload flow types:
  ipv4-frag
  ipv4-tcp
  ipv4-udp
  ipv4-sctp
  ipv4-other
Minimum size of RX buffer: 1024
Maximum configurable length of RX packet: 9728
Maximum configurable size of LRO aggregated packet: 0
Current number of RX queues: 16
Max possible RX queues: 16
Max possible number of RXDs per queue: 4096
Min possible number of RXDs per queue: 64
RXDs number alignment: 32
Current number of TX queues: 16
Max possible TX queues: 16
Max possible number of TXDs per queue: 4096
Min possible number of TXDs per queue: 64
TXDs number alignment: 32
Max segment number per packet: 0
Max segment number per MTU/TSO: 0
20/10/2020 16:27:50              dut.10.240.183.67: start
20/10/2020 16:27:50              dut.10.240.183.67: 
rxonly packet forwarding - ports=1 - cores=1 - streams=16 - NUMA support enabled, MP allocation mode: native
Logical Core 2 (socket 0) forwards packets on 16 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=1 (socket 0) -> TX P=0/Q=1 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=2 (socket 0) -> TX P=0/Q=2 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=3 (socket 0) -> TX P=0/Q=3 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=4 (socket 0) -> TX P=0/Q=4 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=5 (socket 0) -> TX P=0/Q=5 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=6 (socket 0) -> TX P=0/Q=6 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=7 (socket 0) -> TX P=0/Q=7 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=8 (socket 0) -> TX P=0/Q=8 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=9 (socket 0) -> TX P=0/Q=9 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=10 (socket 0) -> TX P=0/Q=10 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=11 (socket 0) -> TX P=0/Q=11 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=12 (socket 0) -> TX P=0/Q=12 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=13 (socket 0) -> TX P=0/Q=13 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=14 (socket 0) -> TX P=0/Q=14 (socket 0) peer=02:00:00:00:00:00
  RX P=0/Q=15 (socket 0) -> TX P=0/Q=15 (socket 0) peer=02:00:00:00:00:00

  rxonly packet forwarding packets/burst=32
  nb forwarding cores=1 - nb forwarding ports=1
  port 0: RX queue number: 16 Tx queue number: 16
    Rx offloads=0x0 Tx offloads=0x0
    RX queue: 0
      RX desc=512 - RX free threshold=32
      RX threshold registers: pthresh=0 hthresh=0  wthresh=0
      RX Offloads=0x0
    TX queue: 0
      TX desc=512 - TX free threshold=32
      TX threshold registers: pthresh=0 hthresh=0  wthresh=0
      TX offloads=0x0 - TX RS bit threshold=32
20/10/2020 16:27:50             TestCVLIAVFRSSGTPU: Subcase: toeplitz/symmetric with same pattern
20/10/2020 16:27:50              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:51              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:51              dut.10.240.183.67: flow list 0
20/10/2020 16:27:51              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 16:27:51             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:27:52              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x8e2da18c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x71addf67 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x8e2da18c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:27:52             TestCVLIAVFRSSGTPU: hash_infos: [('0x8e2da18c', '0xc'), ('0x71addf67', '0x7'), ('0x8e2da18c', '0xc')]
20/10/2020 16:27:52              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 16:27:52              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 16:27:52              dut.10.240.183.67: flow list 0
20/10/2020 16:27:52              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
1	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 16:27:52             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:27:53              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6b977d0c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6b977d0c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x623437cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x623437cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb8b95127 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb8b95127 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:27:53             TestCVLIAVFRSSGTPU: hash_infos: [('0x6b977d0c', '0xc'), ('0x6b977d0c', '0xc'), ('0x623437cd', '0xd'), ('0x623437cd', '0xd'), ('0xb8b95127', '0x7'), ('0xb8b95127', '0x7')]
20/10/2020 16:27:53             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:27:54              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6b977d0c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x60b8536d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x60b8536d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:27:54             TestCVLIAVFRSSGTPU: hash_infos: [('0x6b977d0c', '0xc'), ('0x60b8536d', '0xd'), ('0x60b8536d', '0xd')]
20/10/2020 16:27:54              dut.10.240.183.67: flow destroy 0 rule 1
20/10/2020 16:27:55              dut.10.240.183.67: 
Flow rule #1 destroyed
testpmd> 
20/10/2020 16:27:55             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:27:56              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:27:56             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 16:27:56             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:27:57              dut.10.240.183.67: port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 0: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x0
  ol_flags: PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:27:57             TestCVLIAVFRSSGTPU: hash_infos: []
20/10/2020 16:27:57              dut.10.240.183.67: flow flush 0
20/10/2020 16:27:58              dut.10.240.183.67: 
iavf_execute_vf_cmd(): No response or return failure (-5) for cmd 46
iavf_add_del_rss_cfg(): Failed to execute command of OP_DEL_RSS_INPUT_CFG
iavf_hash_destroy(): fail to del RSS configure
iavf_flow_destroy(): Failed to destroy flow
iavf_flow_flush(): Failed to flush flows
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to delete rss rule.: Operation not permitted
20/10/2020 16:27:58             TestCVLIAVFRSSGTPU: Subcase: toeplitz/symmetric with same ptype different UL/DL
20/10/2020 16:27:58              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 0 / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end
20/10/2020 16:27:58              dut.10.240.183.67: 
Flow rule #0 created
20/10/2020 16:27:58              dut.10.240.183.67: flow list 0
20/10/2020 16:27:58              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 16:27:58             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:27:59              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x8e2da18c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x71addf67 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x8e2da18c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:27:59             TestCVLIAVFRSSGTPU: hash_infos: [('0x8e2da18c', '0xc'), ('0x71addf67', '0x7'), ('0x8e2da18c', '0xc')]
20/10/2020 16:27:59              dut.10.240.183.67: flow create 0 ingress pattern eth / ipv4 / udp / gtpu / gtp_psc pdu_t is 1 / ipv4 / end actions rss func symmetric_toeplitz types ipv4 end key_len 0 queues end / end
20/10/2020 16:27:59              dut.10.240.183.67: 
Flow rule #1 created
20/10/2020 16:27:59              dut.10.240.183.67: flow list 0
20/10/2020 16:27:59              dut.10.240.183.67: 
ID	Group	Prio	Attr	Rule
0	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
1	0	0	i--	ETH IPV4 UDP GTPU GTP_PSC IPV4 => RSS
20/10/2020 16:27:59             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:28:00              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6b977d0c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6b977d0c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x623437cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x623437cd - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_FRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb8b95127 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 7: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=570 - nb_segs=1 - RSS hash=0xb8b95127 - RSS queue=0x7 - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_ICMP  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0x7
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 

20/10/2020 16:28:00             TestCVLIAVFRSSGTPU: hash_infos: [('0x6b977d0c', '0xc'), ('0x6b977d0c', '0xc'), ('0x623437cd', '0xd'), ('0x623437cd', '0xd'), ('0xb8b95127', '0x7'), ('0xb8b95127', '0x7')]
20/10/2020 16:28:00             TestCVLIAVFRSSGTPU: ----------send packet-------------
20/10/2020 16:28:01              dut.10.240.183.67: port 0/queue 12: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x6b977d0c - RSS queue=0xc - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - Receive queue=0xc
  ol_flags: PKT_RX_RSS_HASH PKT_RX_L4_CKSUM_GOOD PKT_RX_IP_CKSUM_GOOD PKT_RX_OUTER_L4_CKSUM_UNKNOWN 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x60b8536d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 
port 0/queue 13: received 1 packets
  src=00:00:00:00:00:00 - dst=00:11:22:33:44:55 - type=0x0800 - length=562 - nb_segs=1 - RSS hash=0x60b8536d - RSS queue=0xd - hw ptype: L2_ETHER L3_IPV4_EXT_UNKNOWN TUNNEL_GTPU INNER_L3_IPV4_EXT_UNKNOWN INNER_L4_NONFRAG  - sw ptype: L2_ETHER L3_IPV4 L4_UDP  - l2_len=14 - l3_len=20 - l4_len=8 - VXLAN packet: packet type =32913, Destination UDP port =2152, VNI = 4660 - 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 

20/10/2020 16:28:01             TestCVLIAVFRSSGTPU: hash_infos: [('0x6b977d0c', '0xc'), ('0x60b8536d', '0xd'), ('0x60b8536d', '0xd')]
20/10/2020 16:28:01             TestCVLIAVFRSSGTPU: Test Case test_toeplitz_symmetric_combination Result FAILED: 'third packet should hash value same with the first packet'
20/10/2020 16:28:01              dut.10.240.183.67: flow flush 0
20/10/2020 16:28:02              dut.10.240.183.67: 
iavf_execute_vf_cmd(): No response or return failure (-5) for cmd 46
iavf_add_del_rss_cfg(): Failed to execute command of OP_DEL_RSS_INPUT_CFG
iavf_hash_destroy(): fail to del RSS configure
iavf_flow_destroy(): Failed to destroy flow
iavf_flow_flush(): Failed to flush flows
port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to delete rss rule.: Operation not permitted
testpmd> 
20/10/2020 16:28:02              dut.10.240.183.67: clear port stats all
20/10/2020 16:28:03              dut.10.240.183.67: 

  NIC statistics for port 0 cleared
testpmd> 
20/10/2020 16:28:03              dut.10.240.183.67: stop
20/10/2020 16:28:04              dut.10.240.183.67: 
Telling cores to ...
Waiting for lcores to finish...

  ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 0/Queue= 0 -------
  RX-packets: 9              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue= 7 -> TX Port= 0/Queue= 7 -------
  RX-packets: 6              TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=12 -> TX Port= 0/Queue=12 -------
  RX-packets: 10             TX-packets: 0              TX-dropped: 0             

  ------- Forward Stats for RX Port= 0/Queue=13 -> TX Port= 0/Queue=13 -------
  RX-packets: 8              TX-packets: 0              TX-dropped: 0             

  ---------------------- Forward statistics for port 0  ----------------------
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ----------------------------------------------------------------------------

  +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
  RX-packets: 0              RX-dropped: 0             RX-total: 0
  TX-packets: 0              TX-dropped: 0             TX-total: 0
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Done.
20/10/2020 16:28:04                            dts: 
TEST SUITE ENDED: TestCVLIAVFRSSGTPU

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-10-20 10:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-20  9:41 [dts] [PATCH V1] tests/cvl_iavf_rss_gtpu:add iavf rss gtpu suite Zhimin Huang
2020-10-20 10:04 ` Huang, ZhiminX

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).