From: "Tu, Lijuan" <lijuan.tu@intel.com>
To: "Xu, HailinX" <hailinx.xu@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Cc: "Xu, HailinX" <hailinx.xu@intel.com>
Subject: Re: [dts] [PATCH v1] tests/TestSuite_rss_to_rte_flow.py:support carlsville nic.
Date: Mon, 20 Apr 2020 04:55:11 +0000 [thread overview]
Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BC0CFF1@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1586752145-122996-1-git-send-email-hailinx.xu@intel.com>
Applied failed, please rework, thanks
> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xu Hailin
> Sent: Monday, April 13, 2020 12:29 PM
> To: dts@dpdk.org
> Cc: Xu, HailinX <hailinx.xu@intel.com>
> Subject: [dts] [PATCH v1] tests/TestSuite_rss_to_rte_flow.py:support
> carlsville nic.
>
> From: "xu,hailin" <hailinx.xu@intel.com>
>
> Add carlsville nic Judge conditions,The operation is the same as FVL.
>
> Signed-off-by: xu,hailin <hailinx.xu@intel.com>
> ---
> tests/TestSuite_rss_to_rte_flow.py | 22 +++++++++++-----------
> 1 file changed, 11 insertions(+), 11 deletions(-)
>
> diff --git a/tests/TestSuite_rss_to_rte_flow.py
> b/tests/TestSuite_rss_to_rte_flow.py
> index 593d694..7ce9a92 100644
> --- a/tests/TestSuite_rss_to_rte_flow.py
> +++ b/tests/TestSuite_rss_to_rte_flow.py
> @@ -176,7 +176,7 @@ class TestRSS_to_Rteflow(TestCase):
>
> # Show port default RSS functions
> if (self.nic in ["fortville_eagle", "fortville_spirit",
> - "fortville_spirit_single", "fortpark_TLV", "fortville_25g"]):
> + "fortville_spirit_single", "fortpark_TLV", "fortville_25g",
> "carlsville"]):
> self.dut.send_expect(
> "show port 0 rss-hash", "ipv4-frag ipv4-other ipv6-frag ipv6-other
> ip")
> else:
> @@ -202,7 +202,7 @@ class TestRSS_to_Rteflow(TestCase):
> self.dut.send_expect(
> "flow create 0 ingress pattern end actions rss types all end / end",
> "created")
> if (self.nic in ["fortville_eagle", "fortville_spirit",
> - "fortville_spirit_single", "fortpark_TLV", "fortville_25g"]):
> + "fortville_spirit_single", "fortpark_TLV", "fortville_25g",
> "carlsville"]):
> self.dut.send_expect(
> "show port 0 rss-hash", "all ipv4-frag ipv4-tcp ipv4-udp ipv4-sctp
> ipv4-other ipv6-frag ipv6-tcp ipv6-udp ipv6-sctp ipv6-other l2-payload ip udp
> tcp sctp")
> else:
> @@ -225,7 +225,7 @@ class TestRSS_to_Rteflow(TestCase):
>
> # Show port default RSS fucntions
> if (self.nic in ["fortville_eagle", "fortville_spirit",
> - "fortville_spirit_single", "fortpark_TLV", "fortville_25g"]):
> + "fortville_spirit_single", "fortpark_TLV", "fortville_25g",
> "carlsville"]):
> self.dut.send_expect(
> "show port 0 rss-hash", "ipv4-frag ipv4-other ipv6-frag ipv6-other
> ip")
> else:
> @@ -239,7 +239,7 @@ class TestRSS_to_Rteflow(TestCase):
> self.send_packet("ipv4-udp", self.tester_itf)
> out = self.dut.send_expect("stop", "testpmd> ", 120)
> if (self.nic in ["fortville_eagle", "fortville_spirit",
> - "fortville_spirit_single", "fortpark_TLV", "fortville_25g"]):
> + "fortville_spirit_single", "fortpark_TLV", "fortville_25g",
> "carlsville"]):
> self.check_packet_queue("0", out)
> else:
> self.check_packet_queue("all", out) @@ -277,7 +277,7 @@ class
> TestRSS_to_Rteflow(TestCase):
> # ipv4-other and ipv6-other is enabled by default.
> # i40e
> if (self.nic in ["fortville_eagle", "fortville_spirit",
> - "fortville_spirit_single", "fortpark_TLV", "fortville_25g"]):
> + "fortville_spirit_single", "fortpark_TLV", "fortville_25g",
> "carlsville"]):
> rss_queue = ["1", "4", "7"]
> self.send_and_check(self.pkt4, rss_queue)
> self.send_and_check(self.pkt8, rss_queue) @@ -310,7 +310,7 @@
> class TestRSS_to_Rteflow(TestCase):
> "flow create 0 ingress pattern end actions rss queues 3 end / end",
> "created")
> # Send the packets and verify the results
> if (self.nic in ["fortville_eagle", "fortville_spirit",
> - "fortville_spirit_single", "fortpark_TLV", "fortville_25g"]):
> + "fortville_spirit_single", "fortpark_TLV", "fortville_25g",
> "carlsville"]):
> rss_queue = ["3"]
> self.send_and_check(self.pkt4, rss_queue)
> self.send_and_check(self.pkt8, rss_queue) @@ -355,7 +355,7 @@
> class TestRSS_to_Rteflow(TestCase):
> "flow create 0 ingress pattern end actions rss types udp ipv4-tcp ipv6-
> sctp ipv4-other end queues 1 4 7 end / end", "created")
> # send the packets and verify the results
> if (self.nic in ["fortville_eagle", "fortville_spirit",
> - "fortville_spirit_single", "fortpark_TLV", "fortville_25g"]):
> + "fortville_spirit_single", "fortpark_TLV", "fortville_25g",
> "carlsville"]):
> rss_queue = ["1", "4", "7"]
> self.send_and_check(self.pkt2, rss_queue)
> self.send_and_check(self.pkt3, rss_queue) @@ -493,7 +493,7 @@
> class TestRSS_to_Rteflow(TestCase):
> "flow create 0 ingress pattern end actions rss types ipv6-tcp ipv4-udp
> sctp ipv6-other end queues 5 6 7 end / end", "created")
> # send the packets and verify the results
> if (self.nic in ["fortville_eagle", "fortville_spirit",
> - "fortville_spirit_single", "fortpark_TLV", "fortville_25g"]):
> + "fortville_spirit_single", "fortpark_TLV", "fortville_25g",
> "carlsille"]):
> rss_queue = ["5", "6", "7"]
> self.send_and_check(self.pkt1, rss_queue)
> self.send_and_check(self.pkt2, rss_queue) @@ -569,7 +569,7 @@
> class TestRSS_to_Rteflow(TestCase):
> Set RSS queue rule with queue region API.
> """
> self.verify(self.nic in ["fortville_eagle", "fortville_spirit",
> - "fortville_spirit_single", "fortpark_TLV", "fortville_25g"],
> "NIC Unsupported: " + str(self.nic))
> + "fortville_spirit_single",
> + "fortpark_TLV", "fortville_25g", "carlsville"], "NIC Unsupported: " +
> + str(self.nic))
> self.pmdout.start_testpmd("%s" % self.cores, "--rxq=16 --txq=16 --port-
> topology=chained")
> self.dut.send_expect("set fwd rxonly", "testpmd> ", 120)
> self.dut.send_expect("set verbose 1", "testpmd> ", 120) @@ -613,7
> +613,7 @@ class TestRSS_to_Rteflow(TestCase):
> Set RSS queue rule with invalid parameter in queue region API.
> """
> self.verify(self.nic in ["fortville_eagle", "fortville_spirit",
> - "fortville_spirit_single", "fortpark_TLV", "fortville_25g"],
> "NIC Unsupported: " + str(self.nic))
> + "fortville_spirit_single",
> + "fortpark_TLV", "fortville_25g", "carlsville"], "NIC Unsupported: " +
> + str(self.nic))
> self.pmdout.start_testpmd("%s" % self.cores, "--rxq=16 --txq=16 --port-
> topology=chained")
> self.dut.send_expect("set fwd rxonly", "testpmd> ", 120)
> self.dut.send_expect("set verbose 1", "testpmd> ", 120) @@ -639,7
> +639,7 @@ class TestRSS_to_Rteflow(TestCase):
> The queue region is priority to RSS queue rule.
> """
> self.verify(self.nic in ["fortville_eagle", "fortville_spirit",
> - "fortville_spirit_single", "fortpark_TLV", "fortville_25g"],
> "NIC Unsupported: " + str(self.nic))
> + "fortville_spirit_single",
> + "fortpark_TLV", "fortville_25g", "carlsville"], "NIC Unsupported: " +
> + str(self.nic))
> self.pmdout.start_testpmd("%s" % self.cores, "--rxq=16 --txq=16 --port-
> topology=chained")
> self.dut.send_expect("port config all rss all", "testpmd> ", 120)
> self.dut.send_expect("set fwd rxonly", "testpmd> ", 120)
> --
> 1.8.3.1
prev parent reply other threads:[~2020-04-20 4:55 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-13 4:29 Xu Hailin
2020-04-20 4:55 ` Tu, Lijuan [this message]
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=8CE3E05A3F976642AAB0F4675D0AD20E0BC0CFF1@SHSMSX101.ccr.corp.intel.com \
--to=lijuan.tu@intel.com \
--cc=dts@dpdk.org \
--cc=hailinx.xu@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).