From: Song Jiale <songx.jiale@intel.com>
To: dts@dpdk.org
Cc: Song Jiale <songx.jiale@intel.com>
Subject: [dts] [PATCH V1 1/2] test_plans/ice_rss_configure: add 2 cases
Date: Sun, 9 Oct 2022 16:14:32 +0000 [thread overview]
Message-ID: <20221009161433.22138-1-songx.jiale@intel.com> (raw)
add a case to test rss config none.
add a case to test default rss command line.
Signed-off-by: Song Jiale <songx.jiale@intel.com>
---
| 48 +++++++++++++++++-----
1 file changed, 38 insertions(+), 10 deletions(-)
--git a/test_plans/ice_rss_configure_test_plan.rst b/test_plans/ice_rss_configure_test_plan.rst
index 34cfa73a..7d86fabc 100644
--- a/test_plans/ice_rss_configure_test_plan.rst
+++ b/test_plans/ice_rss_configure_test_plan.rst
@@ -28,7 +28,7 @@ Testpmd Command-line Options:
port config all rss: set the RSS (Receive Side Scaling) mode on or off.
-port config all rss ip/udp/tcp/sctp/all/default
+port config all rss ip/udp/tcp/sctp/all/default/none
Prerequisites
=============
@@ -52,7 +52,7 @@ Test Case: test_command_line_option_rss_ip
1. Launch the testpmd in DUT::
- testpmd>./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10 --rss-ip
+ ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10 --rss-ip
testpmd>set fwd rxonly
testpmd>set verbose 1
testpmd>start
@@ -172,7 +172,7 @@ Test Case: test_command_line_option_rss_udp
1. Launch the testpmd in DUT::
- testpmd>./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10 --rss-udp
+ ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10 --rss-udp
testpmd>set fwd rxonly
testpmd>set verbose 1
testpmd>start
@@ -236,7 +236,7 @@ Test Case: test_command_line_option_disable-rss
1. Launch the testpmd in DUT::
- testpmd>./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10 --disable-rss
+ ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10 --disable-rss
testpmd>set fwd rxonly
testpmd>set verbose 1
testpmd>start
@@ -253,12 +253,24 @@ Test Case: test_command_line_option_disable-rss
sendp([Ether(dst="00:00:00:00:01:00")/IP(src="192.168.0.2",dst="192.168.0.3")/SCTP(sport=1024,dport=1025)/("X"*40)], iface="enp27s0f2")
sendp([Ether(dst="00:00:00:00:01:00")/IPv6(src="3ffe:2501:200:3::2",dst="3ffe:2501:200:3::3")/SCTP(sport=1024,dport=1025)/("X"*40)], iface="enp27s0f2")
+Test Case: test_command_line_option_rss_default
+===============================================
+
+1. Launch the testpmd in DUT::
+
+ ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
+ testpmd>set fwd rxonly
+ testpmd>set verbose 1
+ testpmd>start
+
+2. The rss phenomenon of all packets is the same as that of test_command_line_option_rss_ip
+
Test Case: test_RSS_configure_to_ip
===================================
1. Launch the testpmd in DUT::
- testpmd>./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
+ ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
testpmd>set fwd rxonly
testpmd>set verbose 1
@@ -382,7 +394,7 @@ Test Case: test_RSS_configure_to_udp
1. Launch the testpmd in DUT::
- testpmd>./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
+ ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
testpmd>set fwd rxonly
testpmd>set verbose 1
@@ -450,7 +462,7 @@ Test Case: test_RSS_configure_to_tcp
1. Launch the testpmd in DUT::
- testpmd>./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
+ ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
testpmd>set fwd rxonly
testpmd>set verbose 1
@@ -518,7 +530,7 @@ Test Case: test_RSS_configure_to_sctp
1. Launch the testpmd in DUT::
- testpmd>./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
+ ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
testpmd>set fwd rxonly
testpmd>set verbose 1
@@ -586,7 +598,7 @@ Test Case: test_RSS_configure_to_all
1. Launch the testpmd in DUT::
- testpmd>./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
+ ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
testpmd>set fwd rxonly
testpmd>set verbose 1
@@ -692,7 +704,7 @@ Test Case: test_RSS_configure_to_default
1. Launch the testpmd in DUT::
- testpmd>./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
+ ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
testpmd>set fwd rxonly
testpmd>set verbose 1
@@ -792,3 +804,19 @@ Test Case: test_RSS_configure_to_default
sendp([Ether(dst="00:00:00:00:01:00")/IPv6(src="3ffe:2501:200:3::2",dst="3ffe:2501:200:3::5")/SCTP(sport=1024,dport=1025)/("X"*40)], iface="enp27s0f2")
sendp([Ether(dst="00:00:00:00:01:00")/IPv6(src="3ffe:2501:200:3::2",dst="3ffe:2501:200:3::3")/SCTP(sport=1024,dport=1026)/("X"*40)], iface="enp27s0f2")
sendp([Ether(dst="00:00:00:00:01:00")/IPv6(src="3ffe:2501:200:3::2",dst="3ffe:2501:200:3::3")/SCTP(sport=1026,dport=1025)/("X"*40)], iface="enp27s0f2")
+
+Test Case: test_RSS_configure_to_none
+=====================================
+
+1. Launch the testpmd in DUT::
+
+ ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -c 0xff -n 4 -- -i --rxq=10 --txq=10
+ testpmd>set fwd rxonly
+ testpmd>set verbose 1
+
+2. rss received package type configuration::
+
+ testpmd> port config all none all
+ testpmd> start
+
+3. The rss phenomenon of all packets is the same as that of test_command_line_option_disable-rss
\ No newline at end of file
--
2.17.1
next reply other threads:[~2022-10-09 8:04 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-09 16:14 Song Jiale [this message]
2022-10-09 16:14 ` [dts] [PATCH V1 2/2] tests/ice_rss_configure: " Song Jiale
2022-10-10 3:36 ` lijuan.tu
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=20221009161433.22138-1-songx.jiale@intel.com \
--to=songx.jiale@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).