From: Zhimin Huang <zhiminx.huang@intel.com>
To: dts@dpdk.org
Cc: Zhimin Huang <zhiminx.huang@intel.com>
Subject: [dts] [PATCH V1 5/5] tests/rte_flow_common:modify flow common to adapt dpdk changed
Date: Mon, 1 Nov 2021 20:00:56 +0800 [thread overview]
Message-ID: <20211101120056.12228-5-zhiminx.huang@intel.com> (raw)
In-Reply-To: <20211101120056.12228-1-zhiminx.huang@intel.com>
1.according to 54d78462344e2b3ec0a54cb6f13af0bf3da47032.
the default rss not support ipfrag rss, need take a rss rule to enable ipfrag rss for fdir test.
fix rte flow common code to adapt dts changed.
Signed-off-by: Zhimin Huang <zhiminx.huang@intel.com>
---
tests/rte_flow_common.py | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/tests/rte_flow_common.py b/tests/rte_flow_common.py
index eae24e2e..fb76bf86 100644
--- a/tests/rte_flow_common.py
+++ b/tests/rte_flow_common.py
@@ -1252,6 +1252,11 @@ class FdirProcessing(object):
drop = tv["check_param"].get("drop")
# create rule
self.test_case.dut.send_expect("flow flush %d" % port_id, "testpmd> ", 120)
+ rule_rss = []
+ if "tv_mac_ipv4_frag_fdir" in tv['name']:
+ rule_rss = self.create_rule("flow create 0 ingress pattern eth / ipv4 / end actions rss types ipv4-frag end key_len 0 queues end / end")
+ elif "tv_mac_ipv6_frag_fdir" in tv['name']:
+ rule_rss = self.create_rule("flow create 0 ingress pattern eth / ipv6 / ipv6_frag_ext / end actions rss types ipv6-frag end key_len 0 queues end / end")
rule_li = self.create_rule(tv["rule"])
# send and check match packets
out1 = self.send_pkt_get_output(pkts=tv["scapy_str"]["matched"], port_id=port_id, drop=drop)
@@ -1274,7 +1279,10 @@ class FdirProcessing(object):
self.verify(matched_queue == matched_queue2 and None not in matched_queue,
"send twice matched packet, received in deferent queues")
# check not rule exists
- self.check_rule(port_id=port_id, stats=False)
+ if rule_rss:
+ self.check_rule(port_id=tv["check_param"]["port_id"], rule_list=rule_rss)
+ else:
+ self.check_rule(port_id=port_id, stats=False)
test_results[tv["name"]] = True
self.logger.info((GREEN("case passed: %s" % tv["name"])))
except Exception as e:
--
2.17.1
next prev parent reply other threads:[~2021-11-01 3:31 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-01 12:00 [dts] [PATCH V1 1/5] test_plans/cvl_iavf_ip_fragment_rte_flow:modify testplan " Zhimin Huang
2021-11-01 5:04 ` Huang, ZhiminX
2021-11-01 12:00 ` [dts] [PATCH V1 2/5] test_plans/cvl_ip_fragment_rte_flow:modify " Zhimin Huang
2021-11-01 12:00 ` [dts] [PATCH V1 3/5] tests/cvl_iavf_ip_fragment_rte_flow:modify testcase " Zhimin Huang
2021-11-01 12:00 ` [dts] [PATCH V1 4/5] tests/cvl_ip_fragment_rte_flow:modify " Zhimin Huang
2021-11-01 12:00 ` Zhimin Huang [this message]
2021-11-05 13:28 ` [dts] [PATCH V1 5/5] tests/rte_flow_common:modify flow common " Tu, Lijuan
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=20211101120056.12228-5-zhiminx.huang@intel.com \
--to=zhiminx.huang@intel.com \
--cc=dts@dpdk.org \
/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).