From: Hailin Xu <hailinx.xu@intel.com>
To: dts@dpdk.org
Cc: Hailin Xu <hailinx.xu@intel.com>
Subject: [dts] [PATCH v1] tests/kernelpf_iavf:align with dpdk rss code
Date: Thu, 28 Jan 2021 16:14:31 +0800 [thread overview]
Message-ID: <1611821671-70247-1-git-send-email-hailinx.xu@intel.com> (raw)
iavf/i40evf: Default RSS should be overwritten but not append after.
Signed-off-by: Hailin Xu <hailinx.xu@intel.com>
---
tests/TestSuite_kernelpf_iavf.py | 35 +++++++++++---------------------
1 file changed, 12 insertions(+), 23 deletions(-)
diff --git a/tests/TestSuite_kernelpf_iavf.py b/tests/TestSuite_kernelpf_iavf.py
index 2fed9b7f..1dcbc685 100644
--- a/tests/TestSuite_kernelpf_iavf.py
+++ b/tests/TestSuite_kernelpf_iavf.py
@@ -631,31 +631,20 @@ class TestKernelpfIavf(TestCase):
self.verify(rx_err == 1 or tx_pkts == -1, "Packet drop assert error")
def test_vf_rss(self):
+ rss_type = ["ip", "tcp", "udp"]
self.vm_testpmd.start_testpmd("all", "--txq=4 --rxq=4")
self.vm_testpmd.execute_cmd("set fwd mac")
self.vm_testpmd.execute_cmd("set verbose 1")
for i, j in zip(list(range(64)), [0, 1, 2, 3]*16):
self.vm_testpmd.execute_cmd("port config 0 rss reta (%d,%d)" % (i, j))
- self.vm_testpmd.execute_cmd("port config all rss ip")
- self.vm_testpmd.execute_cmd("port config all rss tcp")
- self.vm_testpmd.execute_cmd("port config all rss udp")
- self.vm_testpmd.execute_cmd("start")
- self.send_packet(self.tester_intf, 'IPV4')
- time.sleep(2)
- out = self.vm_dut.get_session_output()
- self.verify_packet_number(out)
-
- self.vm_testpmd.execute_cmd("clear port stats all")
- self.send_packet(self.tester_intf, 'IPV4&TCP')
- time.sleep(2)
- out = self.vm_dut.get_session_output()
- self.verify_packet_number(out)
-
- self.vm_testpmd.execute_cmd("clear port stats all")
- self.send_packet(self.tester_intf, 'IPV4&UDP')
- time.sleep(2)
- out = self.vm_dut.get_session_output()
- self.verify_packet_number(out)
+ for type in rss_type:
+ self.vm_testpmd.execute_cmd("port config all rss %s" % type)
+ self.vm_testpmd.execute_cmd("start")
+ self.send_packet(self.tester_intf, 'IPV4&%s' % type)
+ time.sleep(1)
+ out = self.vm_dut.get_session_output()
+ self.verify_packet_number(out)
+ self.vm_testpmd.execute_cmd("clear port stats all")
def verify_packet_number(self, out):
queue0_number = len(re.findall('port 0/queue 0', out))
@@ -672,21 +661,21 @@ class TestKernelpfIavf(TestCase):
"""
mac = self.vf_mac
# send packet with different source and dest ip
- if tran_type == "IPV4":
+ if tran_type == "IPV4&ip":
for i in range(30):
packet = r'sendp([Ether(dst="%s", src="02:00:00:00:00:00")/IP(src="192.168.0.%d", '\
'dst="192.168.0.%d")], iface="%s")' % (mac, i + 1, i + 2, itf)
self.tester.scapy_append(packet)
self.tester.scapy_execute()
time.sleep(.5)
- elif tran_type == "IPV4&TCP":
+ elif tran_type == "IPV4&tcp":
for i in range(30):
packet = r'sendp([Ether(dst="%s", src="02:00:00:00:00:00")/IP(src="192.168.0.%d", dst="192.168.0.%d")/'\
'TCP(sport=1024,dport=1024)], iface="%s")' % (mac, i + 1, i + 2, itf)
self.tester.scapy_append(packet)
self.tester.scapy_execute()
time.sleep(.5)
- elif tran_type == "IPV4&UDP":
+ elif tran_type == "IPV4&udp":
for i in range(30):
packet = r'sendp([Ether(dst="%s", src="02:00:00:00:00:00")/IP(src="192.168.0.%d", dst="192.168.0.%d")/'\
'UDP(sport=1024,dport=1024)], iface="%s")' % (mac, i + 1, i + 2, itf)
--
2.17.1
next reply other threads:[~2021-01-28 8:25 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-28 8:14 Hailin Xu [this message]
2021-01-28 8:37 ` Xu, HailinX
2021-02-02 8:55 ` Tu, Lijuan
-- strict thread matches above, loose matches on Subject: below --
2021-01-28 7:51 Hailin Xu
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=1611821671-70247-1-git-send-email-hailinx.xu@intel.com \
--to=hailinx.xu@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).