From: "Chen, LingliX" <linglix.chen@intel.com>
To: "dts@dpdk.org" <dts@dpdk.org>
Subject: Re: [dts] [PATCH V1] tests/TestSuite_rss_to_rte_flow:Support of network adapter for foxville
Date: Tue, 7 Jul 2020 09:17:55 +0000 [thread overview]
Message-ID: <DF0AE4FB1473EC4698A1C81C0B35CF85E8D7A3@CDSMSX102.ccr.corp.intel.com> (raw)
In-Reply-To: <20200707075206.19672-1-linglix.chen@intel.com>
[-- Attachment #1: Type: text/plain, Size: 10840 bytes --]
Tested-by: Chen, LingliX <linglix.chen@intel.com>
Regards,
Chen, LingliX
-----Original Message-----
From: Chen, LingliX
Sent: Tuesday, July 7, 2020 3:52 PM
To: dts@dpdk.org
Cc: Chen, LingliX <linglix.chen@intel.com>
Subject: [dts][PATCH V1] tests/TestSuite_rss_to_rte_flow:Support of network adapter for foxville
From: chenlinglix <linglix.chen@intel.com>
add foxville support case
Signed-off-by: chenlinglix <linglix.chen@intel.com>
---
conf/test_case_supportlist.json | 15 ++++++++++-----
| 32 ++++++++++++++++----------------
2 files changed, 26 insertions(+), 21 deletions(-)
diff --git a/conf/test_case_supportlist.json b/conf/test_case_supportlist.json index 496f0af..a9cb7a6 100644
--- a/conf/test_case_supportlist.json
+++ b/conf/test_case_supportlist.json
@@ -2090,7 +2090,8 @@
"sageville",
"sagepond",
"springville",
- "powerville"
+ "powerville",
+ "foxville"
],
"Target": [
"ALL"
@@ -2134,7 +2135,8 @@
"sageville",
"sagepond",
"springville",
- "powerville"
+ "powerville",
+ "foxville"
],
"Target": [
"ALL"
@@ -2156,7 +2158,8 @@
"sageville",
"sagepond",
"springville",
- "powerville"
+ "powerville",
+ "foxville"
],
"Target": [
"ALL"
@@ -2178,7 +2181,8 @@
"sageville",
"sagepond",
"springville",
- "powerville"
+ "powerville",
+ "foxville"
],
"Target": [
"ALL"
@@ -2200,7 +2204,8 @@
"sageville",
"sagepond",
"springville",
- "powerville"
+ "powerville",
+ "foxville"
],
"Target": [
"ALL"
--git a/tests/TestSuite_rss_to_rte_flow.py b/tests/TestSuite_rss_to_rte_flow.py
index 21ba8dc..756a0b5 100644
--- a/tests/TestSuite_rss_to_rte_flow.py
+++ b/tests/TestSuite_rss_to_rte_flow.py
@@ -897,7 +897,7 @@ class TestRSS_to_Rteflow(TestCase):
"""
self.verify(self.nic not in ["fortville_eagle", "fortville_spirit", "carlsville",
"fortville_spirit_single", "fortpark_TLV", "fortville_25g","fortpark_BASE-T"], "NIC Unsupported: " + str(self.nic))
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.pmdout.start_testpmd("%s" % self.cores, "--rxq=4 --txq=4 --port-topology=chained")
else:
self.pmdout.start_testpmd("%s" % self.cores, "--rxq=8 --txq=8 --port-topology=chained") @@ -907,7 +907,7 @@ class TestRSS_to_Rteflow(TestCase):
time.sleep(2)
# Create a rss queue rule
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.dut.send_expect(
"flow create 0 ingress pattern end actions rss queues 1 2 end / end", "created")
else:
@@ -915,7 +915,7 @@ class TestRSS_to_Rteflow(TestCase):
"flow create 0 ingress pattern end actions rss queues 1 4 7 end / end", "created")
# send the packets and verify the results
ptype_list1 = ["ipv4-other", "ipv4-frag", "ipv4-udp", "ipv4-tcp", "ipv4-sctp", "ipv6-other", "ipv6-frag", "ipv6-udp", "ipv6-tcp", "ipv6-sctp"]
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.send_check_100_packet_queue(ptype_list1, ["1", "2"], port_id=0)
else:
self.send_check_100_packet_queue(ptype_list1, ["1","4","7"], port_id=0) @@ -940,7 +940,7 @@ class TestRSS_to_Rteflow(TestCase):
self.dut.send_expect(
"flow create 0 ingress pattern end actions rss queues 8 end / end", "error")
# Set all the queues to the rule
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.dut.send_expect(
"flow create 0 ingress pattern end actions rss queues 0 1 2 3 end / end", "created")
else:
@@ -954,7 +954,7 @@ class TestRSS_to_Rteflow(TestCase):
"""
self.verify(self.nic not in ["fortville_eagle", "fortville_spirit", "carlsville",
"fortville_spirit_single", "fortpark_TLV", "fortville_25g","fortpark_BASE-T"], "NIC Unsupported: " + str(self.nic))
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.pmdout.start_testpmd("%s" % self.cores, "--rxq=4 --txq=4 --port-topology=chained")
else:
self.pmdout.start_testpmd("%s" % self.cores, "--rxq=8 --txq=8 --port-topology=chained") @@ -964,7 +964,7 @@ class TestRSS_to_Rteflow(TestCase):
time.sleep(2)
# Create a rss queue rule
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.dut.send_expect(
"flow create 0 ingress pattern end actions rss types udp ipv4-tcp ipv6-sctp ipv4-other end queues 1 2 3 end / end","created")
else:
@@ -978,7 +978,7 @@ class TestRSS_to_Rteflow(TestCase):
# send the packets and verify the results
if(self.nic in ["cavium_a063", "cavium_a064"]):
self.send_check_100_packet_queue(ptype_list1, ["1","4","7"], port_id=0)
- elif self.nic == 'springville':
+ elif self.nic in ["foxville", "springville"]:
self.send_check_100_packet_queue(ptype_list1, ["1", "2", "3"], port_id=0)
self.send_check_100_packet_queue(ptype_list2, "0", port_id=0)
else:
@@ -988,7 +988,7 @@ class TestRSS_to_Rteflow(TestCase):
# Create different ptype rss rule.
self.dut.send_expect("flow flush 0", "testpmd> ")
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.dut.send_expect(
"flow create 0 ingress pattern end actions rss types ipv4 ipv6 end queues 1 3 end / end", "created")
else:
@@ -997,7 +997,7 @@ class TestRSS_to_Rteflow(TestCase):
self.dut.send_expect(
"show port 0 rss-hash", "all ipv4 ipv6 ip")
ptype_list3 = ["ipv4-other", "ipv4-frag", "ipv4-udp", "ipv4-tcp", "ipv4-sctp", "ipv6-other", "ipv6-frag", "ipv6-udp", "ipv6-tcp", "ipv6-sctp"]
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.send_check_100_packet_queue(ptype_list3, ["1", "3"], port_id=0)
else:
self.send_check_100_packet_queue(ptype_list3, ["3","7"], port_id=0) @@ -1008,7 +1008,7 @@ class TestRSS_to_Rteflow(TestCase):
"""
self.verify(self.nic not in ["fortville_eagle", "fortville_spirit", "carlsville",
"fortville_spirit_single", "fortpark_TLV", "fortville_25g","fortpark_BASE-T"], "NIC Unsupported: " + str(self.nic))
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.pmdout.start_testpmd("%s" % self.cores, "--rxq=4 --txq=4 --disable-rss --port-topology=chained")
else:
self.pmdout.start_testpmd("%s" % self.cores, "--rxq=8 --txq=8 --disable-rss --port-topology=chained") @@ -1030,7 +1030,7 @@ class TestRSS_to_Rteflow(TestCase):
self.send_check_100_packet_queue(ptype_list1, "0", port_id=0)
# Create a rss queue rule
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.dut.send_expect(
"flow create 0 ingress pattern end actions rss types ipv6-tcp ipv4-udp end queues 1 2 3 end / end", "created")
else:
@@ -1042,7 +1042,7 @@ class TestRSS_to_Rteflow(TestCase):
# send the packets and verify the results
ptype_list2 = ["ipv4-udp", "ipv6-tcp"]
ptype_list3 = ["ipv4-other", "ipv4-frag", "ipv4-tcp", "ipv4-sctp", "ipv6-other", "ipv6-frag", "ipv6-udp", "ipv6-sctp"]
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.send_check_100_packet_queue(ptype_list2, ["1", "2", "3"], port_id=0)
else:
self.send_check_100_packet_queue(ptype_list2, ["5","6","7"], port_id=0) @@ -1054,7 +1054,7 @@ class TestRSS_to_Rteflow(TestCase):
"""
self.verify(self.nic not in ["fortville_eagle", "fortville_spirit", "carlsville",
"fortville_spirit_single", "fortpark_TLV", "fortville_25g","fortpark_BASE-T"], "NIC Unsupported: " + str(self.nic))
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.pmdout.start_testpmd("%s" % self.cores, "--rxq=4 --txq=4 --disable-rss --port-topology=chained")
else:
self.pmdout.start_testpmd("%s" % self.cores, "--rxq=8 --txq=8 --pkt-filter-mode=perfect") @@ -1064,7 +1064,7 @@ class TestRSS_to_Rteflow(TestCase):
time.sleep(2)
# Create a rss queue rule
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.dut.send_expect(
"flow create 0 ingress pattern end actions rss types ipv4-udp end queues 2 3 end / end", "created")
self.send_and_check(self.pkt2, ["2", "3"], port_id=0) @@ -1074,7 +1074,7 @@ class TestRSS_to_Rteflow(TestCase):
self.send_and_check(self.pkt2, ["3", "4", "5"], port_id=0)
# Create a flow director rule
- if (self.nic in ["bartonhills", "powerville" , "springville"]):
+ if (self.nic in ["bartonhills", "powerville" , "springville","foxville"]):
self.dut.send_expect(
"flow create 0 ingress pattern eth / ipv4 proto is 17 / udp dst is 50 / end actions queue index 1 / end", "created")
self.send_and_check(self.pkt2, ["1"], port_id=0) @@ -1084,7 +1084,7 @@ class TestRSS_to_Rteflow(TestCase):
self.send_and_check(self.pkt2, ["1"], port_id=0)
# Delete the fdir rule
self.dut.send_expect("flow destroy 0 rule 1", "testpmd> ")
- if self.nic == 'springville':
+ if self.nic in ["foxville", "springville"]:
self.send_and_check(self.pkt2, ["2", "3"], port_id=0)
else:
self.send_and_check(self.pkt2, ["3", "4", "5"], port_id=0)
--
1.8.3.1
[-- Attachment #2: TestRSS_to_Rteflow.log --]
[-- Type: application/octet-stream, Size: 2766188 bytes --]
next prev parent reply other threads:[~2020-07-07 9:18 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-07 7:52 Chen Linglix
2020-07-07 9:17 ` Chen, LingliX [this message]
2020-07-24 1:44 ` 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=DF0AE4FB1473EC4698A1C81C0B35CF85E8D7A3@CDSMSX102.ccr.corp.intel.com \
--to=linglix.chen@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).