From: hailinx xu <hailinx.xu@intel.com>
To: dts@dpdk.org, qi.fu@intel.com
Cc: hailinx xu <hailinx.xu@intel.com>
Subject: [dts][PATCH v3 2/2] tests/ice_fdir: support ipv6 next proto id
Date: Thu, 22 Sep 2022 13:28:39 +0800 [thread overview]
Message-ID: <20220922052839.23851-3-hailinx.xu@intel.com> (raw)
In-Reply-To: <20220922052839.23851-1-hailinx.xu@intel.com>
add new test cases for ice support ipv6 next proto id
Signed-off-by: hailinx xu <hailinx.xu@intel.com>
---
tests/TestSuite_ice_fdir.py | 336 ++++++++++++++++++++++++++++++++++++
1 file changed, 336 insertions(+)
diff --git a/tests/TestSuite_ice_fdir.py b/tests/TestSuite_ice_fdir.py
index 26f32b29..fac65fda 100644
--- a/tests/TestSuite_ice_fdir.py
+++ b/tests/TestSuite_ice_fdir.py
@@ -377,6 +377,83 @@ MAC_IPV6_NAT_T_ESP = {
],
}
+# 22.07 new feature
+IPV6_NEXT_PROTO = {
+ "match": [
+ "Ether(dst='00:11:22:33:44:55')/IPv6(nh=123)/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrDestOpt(nh=123)/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrRouting(nh=123)/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrHopByHop(nh=123)/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrSegmentRouting(nh=123)/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrDestOpt()/IPv6ExtHdrDestOpt(nh=123)/Raw('x'*40)",
+ ],
+ "unmatched": [
+ "Ether(dst='00:11:22:33:44:55')/IPv6(nh=111)/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/UDP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/TCP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/SCTP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrFragment(nh=123)/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrRouting()/IPv6ExtHdrRouting(nh=111)/Raw('x'*40)",
+ ],
+}
+
+IPV6_NEXT_PROTO_TCP = {
+ "match": [
+ "Ether(dst='00:11:22:33:44:55')/IPv6(nh=6)/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6(nh=6)/TCP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrDestOpt(nh=6)/TCP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrRouting(nh=6)/TCP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrHopByHop(nh=6)/TCP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrSegmentRouting(nh=6)/TCP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrDestOpt()/IPv6ExtHdrDestOpt(nh=6)/TCP()/Raw('x'*40)",
+ ],
+ "unmatched": [
+ "Ether(dst='00:11:22:33:44:55')/IPv6(nh=17)/TCP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/UDP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/SCTP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrFragment(nh=6)/TCP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrRouting()/IPv6ExtHdrRouting(nh=111)/TCP()/Raw('x'*40)",
+ ],
+}
+
+IPV6_NEXT_PROTO_UDP = {
+ "match": [
+ "Ether(dst='00:11:22:33:44:55')/IPv6(nh=17)/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/UDP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrDestOpt(nh=17)/UDP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrRouting(nh=17)/UDP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrHopByHop(nh=17)/UDP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrSegmentRouting(nh=17)/UDP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrDestOpt()/IPv6ExtHdrDestOpt(nh=17)/UDP()/Raw('x'*40)",
+ ],
+ "unmatched": [
+ "Ether(dst='00:11:22:33:44:55')/IPv6(nh=6)/UDP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/TCP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/SCTP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrFragment(nh=6)/UDP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrRouting()/IPv6ExtHdrRouting(nh=111)/UDP()/Raw('x'*40)",
+ ],
+}
+
+IPV6_NEXT_PROTO_SCTP = {
+ "match": [
+ "Ether(dst='00:11:22:33:44:55')/IPv6(nh=132)/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/SCTP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrDestOpt(nh=132)/SCTP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrRouting(nh=132)/SCTP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrHopByHop(nh=132)/SCTP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrSegmentRouting(nh=132)/SCTP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrDestOpt()/IPv6ExtHdrDestOpt(nh=132)/SCTP()/Raw('x'*40)",
+ ],
+ "unmatched": [
+ "Ether(dst='00:11:22:33:44:55')/IPv6(nh=6)/SCTP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/UDP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/TCP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrFragment(nh=6)/SCTP()/Raw('x'*40)",
+ "Ether(dst='00:11:22:33:44:55')/IPv6()/IPv6ExtHdrRouting()/IPv6ExtHdrRouting(nh=111)/SCTP()/Raw('x'*40)",
+ ],
+}
+
tv_mac_ipv4_pay_queue_index = {
"name": "test_mac_ipv4_pay_queue_index",
"rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv4 src is 192.168.0.20 dst is 192.168.0.21 proto is 255 ttl is 2 tos is 4 / end actions queue index 1 / mark / end",
@@ -2682,6 +2759,235 @@ vectors_mac_ipv6_nat_t_esp = [
tv_mac_ipv6_nat_t_esp_mark,
]
+# 22.07 new feature
+tv_ipv6_next_proto_queue_index = {
+ "name": "tv_ipv6_next_proto_queue_index",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 123 / end actions queue index 1 / mark / end",
+ "scapy_str": IPV6_NEXT_PROTO,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "queue": 1, "mark_id": 0},
+}
+
+tv_ipv6_next_proto_rss_queues = {
+ "name": "tv_ipv6_next_proto_rss_queues",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 123 / end actions rss queues 2 3 end / mark id 1 / end",
+ "scapy_str": IPV6_NEXT_PROTO,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "queue": [2, 3], "mark_id": 1},
+}
+
+tv_ipv6_next_proto_passthru = {
+ "name": "tv_ipv6_next_proto_passthru",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 123 / end actions passthru / mark / end",
+ "scapy_str": IPV6_NEXT_PROTO,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "rss": True, "mark_id": 0},
+}
+
+tv_ipv6_next_proto_drop = {
+ "name": "tv_ipv6_next_proto_drop",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 123 / end actions drop / end",
+ "scapy_str": IPV6_NEXT_PROTO,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "drop": True},
+}
+
+tv_ipv6_next_proto_mark_rss = {
+ "name": "tv_ipv6_next_proto_mark_rss",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 123 / end actions mark / rss / end",
+ "scapy_str": IPV6_NEXT_PROTO,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "mark_id": 0, "rss": True},
+}
+
+tv_ipv6_next_proto_mark = {
+ "name": "tv_ipv6_next_proto_mark",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 123 / end actions mark / end",
+ "scapy_str": IPV6_NEXT_PROTO,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "mark_id": 0, "rss": True},
+}
+
+vectors_ipv6_next_proto = [
+ tv_ipv6_next_proto_queue_index,
+ tv_ipv6_next_proto_rss_queues,
+ tv_ipv6_next_proto_passthru,
+ tv_ipv6_next_proto_drop,
+ tv_ipv6_next_proto_mark_rss,
+ tv_ipv6_next_proto_mark,
+]
+
+tv_ipv6_next_proto_tcp_queue_index = {
+ "name": "tv_ipv6_next_proto_tcp_queue_index",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 6 / tcp / end actions queue index 3 / mark / end",
+ "scapy_str": IPV6_NEXT_PROTO_TCP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "queue": 3, "mark_id": 0},
+}
+
+tv_ipv6_next_proto_tcp_rss_queues = {
+ "name": "tv_ipv6_next_proto_tcp_rss_queues",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 6 / tcp / end actions rss queues 5 6 end / mark id 1 / end",
+ "scapy_str": IPV6_NEXT_PROTO_TCP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "queue": [5, 6], "mark_id": 1},
+}
+
+tv_ipv6_next_proto_tcp_passthru = {
+ "name": "tv_ipv6_next_proto_tcp_passthru",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 6 / tcp / end actions passthru / mark / end",
+ "scapy_str": IPV6_NEXT_PROTO_TCP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "rss": True, "mark_id": 0},
+}
+
+tv_ipv6_next_proto_tcp_drop = {
+ "name": "tv_ipv6_next_proto_tcp_drop",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 6 / tcp / end actions drop / end",
+ "scapy_str": IPV6_NEXT_PROTO_TCP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "drop": True},
+}
+
+tv_ipv6_next_proto_tcp_mark_rss = {
+ "name": "tv_ipv6_next_proto_tcp_mark_rss",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 6 / tcp / end actions mark / rss / end",
+ "scapy_str": IPV6_NEXT_PROTO_TCP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "mark_id": 0, "rss": True},
+}
+
+tv_ipv6_next_proto_tcp_mark = {
+ "name": "tv_ipv6_next_proto_tcp_mark",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 6 / tcp / end actions mark / end",
+ "scapy_str": IPV6_NEXT_PROTO_TCP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "mark_id": 0, "rss": True},
+}
+
+vectors_ipv6_next_proto_tcp = [
+ tv_ipv6_next_proto_tcp_queue_index,
+ tv_ipv6_next_proto_tcp_rss_queues,
+ tv_ipv6_next_proto_tcp_passthru,
+ tv_ipv6_next_proto_tcp_drop,
+ tv_ipv6_next_proto_tcp_mark_rss,
+ tv_ipv6_next_proto_tcp_mark,
+]
+
+tv_ipv6_next_proto_udp_queue_index = {
+ "name": "tv_ipv6_next_proto_udp_queue_index",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 17 / udp / end actions queue index 3 / mark / end",
+ "scapy_str": IPV6_NEXT_PROTO_UDP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "queue": 3, "mark_id": 0},
+}
+
+tv_ipv6_next_proto_udp_rss_queues = {
+ "name": "tv_ipv6_next_proto_udp_rss_queues",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 17 / udp / end actions rss queues 7 8 end / mark id 1 / end",
+ "scapy_str": IPV6_NEXT_PROTO_UDP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "queue": [7, 8], "mark_id": 1},
+}
+
+tv_ipv6_next_proto_udp_passthru = {
+ "name": "tv_ipv6_next_proto_udp_passthru",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 17 / udp / end actions passthru / mark / end",
+ "scapy_str": IPV6_NEXT_PROTO_UDP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "rss": True, "mark_id": 0},
+}
+
+tv_ipv6_next_proto_udp_drop = {
+ "name": "tv_ipv6_next_proto_udp_drop",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 17 / udp / end actions drop / end",
+ "scapy_str": IPV6_NEXT_PROTO_UDP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "drop": True},
+}
+
+tv_ipv6_next_proto_udp_mark_rss = {
+ "name": "tv_ipv6_next_proto_udp_mark_rss",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 17 / udp / end actions mark / rss / end",
+ "scapy_str": IPV6_NEXT_PROTO_UDP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "mark_id": 0, "rss": True},
+}
+
+tv_ipv6_next_proto_udp_mark = {
+ "name": "tv_ipv6_next_proto_udp_mark",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 17 / udp / end actions mark / end",
+ "scapy_str": IPV6_NEXT_PROTO_UDP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "mark_id": 0, "rss": True},
+}
+
+vectors_ipv6_next_proto_udp = [
+ tv_ipv6_next_proto_udp_queue_index,
+ tv_ipv6_next_proto_udp_rss_queues,
+ tv_ipv6_next_proto_udp_passthru,
+ tv_ipv6_next_proto_udp_drop,
+ tv_ipv6_next_proto_udp_mark_rss,
+ tv_ipv6_next_proto_udp_mark,
+]
+
+tv_ipv6_next_proto_sctp_queue_index = {
+ "name": "tv_ipv6_next_proto_sctp_queue_index",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 132 / sctp / end actions queue index 5 / mark id 3 / end",
+ "scapy_str": IPV6_NEXT_PROTO_SCTP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "queue": 5, "mark_id": 3},
+}
+
+tv_ipv6_next_proto_sctp_rss_queues = {
+ "name": "tv_ipv6_next_proto_sctp_rss_queues",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 132 / sctp / end actions rss queues 1 2 end / mark id 1 / end",
+ "scapy_str": IPV6_NEXT_PROTO_SCTP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "queue": [1, 2], "mark_id": 1},
+}
+
+tv_ipv6_next_proto_sctp_passthru = {
+ "name": "tv_ipv6_next_proto_sctp_passthru",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 132 / sctp / end actions passthru / mark id 4 / end",
+ "scapy_str": IPV6_NEXT_PROTO_SCTP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "rss": True, "mark_id": 4},
+}
+
+tv_ipv6_next_proto_sctp_drop = {
+ "name": "tv_ipv6_next_proto_sctp_drop",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 132 / sctp / end actions drop / end",
+ "scapy_str": IPV6_NEXT_PROTO_SCTP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "drop": True},
+}
+
+tv_ipv6_next_proto_sctp_mark_rss = {
+ "name": "tv_ipv6_next_proto_sctp_mark_rss",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 132 / sctp / end actions mark / rss / end",
+ "scapy_str": IPV6_NEXT_PROTO_SCTP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "mark_id": 0, "rss": True},
+}
+
+tv_ipv6_next_proto_sctp_mark = {
+ "name": "tv_ipv6_next_proto_sctp_mark",
+ "rule": "flow create 0 ingress pattern eth dst is 00:11:22:33:44:55 / ipv6 proto is 132 / sctp / end actions mark / end",
+ "scapy_str": IPV6_NEXT_PROTO_SCTP,
+ "check_func": rfc.check_mark,
+ "check_param": {"port_id": 0, "mark_id": 0, "rss": True},
+}
+
+vectors_ipv6_next_proto_sctp = [
+ tv_ipv6_next_proto_sctp_queue_index,
+ tv_ipv6_next_proto_sctp_rss_queues,
+ tv_ipv6_next_proto_sctp_passthru,
+ tv_ipv6_next_proto_sctp_drop,
+ tv_ipv6_next_proto_sctp_mark_rss,
+ tv_ipv6_next_proto_sctp_mark,
+]
+
class TestICEFdir(TestCase):
def query_count(self, hits_set, hits, port_id=0, rule_id=0):
@@ -4169,6 +4475,36 @@ class TestICEFdir(TestCase):
)
self.check_fdir_rule(stats=True)
+ # 22.07 new feature
+ @skip_unsupported_pkg(["os default", "wireless"])
+ def test_ipv6_next_proto(self):
+ self._rte_flow_validate(vectors_ipv6_next_proto)
+
+ @skip_unsupported_pkg(["os default", "wireless"])
+ def test_ipv6_next_proto_tcp(self):
+ self._rte_flow_validate(vectors_ipv6_next_proto_tcp)
+
+ @skip_unsupported_pkg(["os default", "wireless"])
+ def test_ipv6_next_proto_udp(self):
+ self._rte_flow_validate(vectors_ipv6_next_proto_udp)
+
+ @skip_unsupported_pkg(["os default", "wireless"])
+ def test_ipv6_next_proto_sctp(self):
+ self._rte_flow_validate(vectors_ipv6_next_proto_sctp)
+
+ @skip_unsupported_pkg(["os default", "wireless"])
+ def test_ipv6_next_proto_exclusive(self):
+ rule = "flow create 0 priority 0 ingress pattern eth / ipv6 proto is 123 / end actions queue index 1 / mark / end"
+ self.create_fdir_rule(rule, check_stats=True)
+ self.pmd_output.execute_cmd("flow flush 0")
+ rule1 = "flow create 0 ingress pattern eth / ipv6 proto is 123 / end actions queue index 1 / mark / end"
+ rule2 = "flow create 0 ingress pattern eth / ipv6 proto is 123 / end actions rss queues 2 3 end / mark / end"
+ self.create_fdir_rule(rule1, check_stats=True)
+ out = self.pmd_output.execute_cmd(rule2)
+ self.verify(
+ "Rule already exists!: File exists" in out, "created rule successfully!!!"
+ )
+
def tear_down(self):
try:
# destroy all flow rule on port 0
--
2.17.1
next prev parent reply other threads:[~2022-09-22 5:30 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-22 5:28 [dts][PATCH v3 0/2] add new test plans and test cases hailinx xu
2022-09-22 5:28 ` [dts][PATCH v3 1/2] test_plans: support ipv6 next proto id hailinx xu
2022-09-28 5:46 ` lijuan.tu
2022-09-22 5:28 ` hailinx xu [this message]
2022-09-22 8:50 ` [dts][PATCH v3 2/2] tests/ice_fdir: " Huang, ZhiminX
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220922052839.23851-3-hailinx.xu@intel.com \
--to=hailinx.xu@intel.com \
--cc=dts@dpdk.org \
--cc=qi.fu@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).