[V2,2/2] tests/pmdrss_hash: replace legacy filter with rte_flow

Message ID 1636351231-2373-3-git-send-email-yux.jiang@intel.com (mailing list archive)
State Superseded
Headers
Series pmdrss_hash: replace legacy filter with rte_flow |

Commit Message

Yu Jiang Nov. 8, 2021, 6 a.m. UTC
  According to dpdk commit 81db321da("ethdev: remove legacy HASH filter type support"),
remove legacy hash filter, then use rte_flow api to replace.

Signed-off-by: Yu Jiang <yux.jiang@intel.com>
---
 conf/test_case_checklist.json  |  11 ++++-
 tests/TestSuite_pmdrss_hash.py | 107 ++++++++++++++++++++---------------------
 2 files changed, 63 insertions(+), 55 deletions(-)
  

Patch

diff --git a/conf/test_case_checklist.json b/conf/test_case_checklist.json
index d26244e..e0b68fa 100644
--- a/conf/test_case_checklist.json
+++ b/conf/test_case_checklist.json
@@ -1493,6 +1493,9 @@ 
                 "ALL"
             ],
             "NIC": [
+                "columbiaville_25g",
+                "columbiaville_100g",
+                "niantic",
                 "foxville"
             ],
             "Target": [
@@ -1521,7 +1524,7 @@ 
                 "ALL"
             ],
             "NIC": [
-	        "foxville"
+                "foxville"
             ],
             "Target": [
                 "ALL"
@@ -1550,6 +1553,9 @@ 
                 "ALL"
             ],
             "NIC": [
+                "columbiaville_25g",
+                "columbiaville_100g",
+                "niantic",
                 "foxville"
             ],
             "Target": [
@@ -1579,6 +1585,9 @@ 
                 "ALL"
             ],
             "NIC": [
+                "columbiaville_25g",
+                "columbiaville_100g",
+                "niantic",
                 "foxville"
             ],
             "Target": [
diff --git a/tests/TestSuite_pmdrss_hash.py b/tests/TestSuite_pmdrss_hash.py
index 2ff98cb..b4ee6ef 100644
--- a/tests/TestSuite_pmdrss_hash.py
+++ b/tests/TestSuite_pmdrss_hash.py
@@ -416,28 +416,12 @@  class TestPmdrssHash(TestCase):
         Run at the start of each test suite.
         """
 
-        self.verify(self.nic in ["columbiaville_25g", "columbiaville_100g","fortville_eagle", "fortville_spirit",
-                    "fortville_spirit_single", "fortpark_TLV", "fortpark_BASE-T","fortville_25g", "niantic", "carlsville", "foxville"],
-                    "NIC Unsupported: " + str(self.nic))
         global reta_num
         global iptypes
         global queue
-        if self.nic in ["foxville"]:
-            queue = 4
 
         if self.nic in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortpark_TLV", "fortpark_BASE-T","fortville_25g", "carlsville"]:
             reta_num = 512
-        elif self.nic in ["niantic", "foxville"]:
-            reta_num = 128
-            iptypes = {'ipv4-other': 'ip',
-                       'ipv4-frag': 'ip',
-                       'ipv4-udp': 'udp',
-                       'ipv4-tcp': 'tcp',
-                       'ipv6-other': 'ip',
-                       'ipv6-udp': 'udp',
-                       'ipv6-tcp': 'tcp',
-                       'ipv6-frag': 'ip'
-                       }
         else:
             self.verify(False, "NIC Unsupported:%s" % str(self.nic))
         ports = self.dut.get_ports(self.nic)
@@ -456,6 +440,7 @@  class TestPmdrssHash(TestCase):
         dutPorts = self.dut.get_ports(self.nic)
         localPort = self.tester.get_local_port(dutPorts[0])
         itf = self.tester.get_interface(localPort)
+        rule_action = 'func toeplitz queues end / end'
         global reta_num
         global iptypes
 
@@ -474,8 +459,14 @@  class TestPmdrssHash(TestCase):
                 "set nbcore %d" % (queue + 1), "testpmd> ")
 
             self.dut.send_expect("port stop all", "testpmd> ")
-            self.dut.send_expect(
-                "set_hash_global_config  0 toeplitz %s enable" % iptype, "testpmd> ")
+            self.dut.send_expect("flow flush 0", "testpmd> ")
+            rule_cmd = f'flow create 0 ingress pattern eth / ipv4 / end actions rss types {iptype} end queues end {rule_action}'
+            if 'sctp' in iptype or 'udp' in iptype or 'tcp' in iptype:
+                rule_cmd = rule_cmd.replace('/ ipv4 /', f'/ ipv4 / {rsstype} /')
+            if 'ipv6' in iptype:
+                rule_cmd = rule_cmd.replace('ipv4', 'ipv6')
+            outx = self.dut.send_expect(rule_cmd, "testpmd> ")
+            self.verify("created" in outx, "Create flow failed")
             self.dut.send_expect("port start all", "testpmd> ")
             out = self.dut.send_expect(
                 "port config all rss %s" % rsstype, "testpmd> ")
@@ -519,7 +510,8 @@  class TestPmdrssHash(TestCase):
                 rule_cmd = rule_cmd.replace('/ ipv4 /', f'/ ipv4 / {rsstype} /')
             if 'ipv6' in iptype:
                 rule_cmd = rule_cmd.replace('ipv4', 'ipv6')
-            self.dut.send_expect(rule_cmd, "testpmd> ")
+            outx = self.dut.send_expect(rule_cmd, "testpmd> ")
+            self.verify("created" in outx, "Create flow failed")
             self.dut.send_expect("port start all", "testpmd> ")
             out = self.dut.send_expect(
                 "port config all rss %s" % rsstype, "testpmd> ")
@@ -540,6 +532,7 @@  class TestPmdrssHash(TestCase):
         dutPorts = self.dut.get_ports(self.nic)
         localPort = self.tester.get_local_port(dutPorts[0])
         itf = self.tester.get_interface(localPort)
+        rule_action = 'func simple_xor queues end / end'
         global reta_num
         global iptypes
 
@@ -560,8 +553,14 @@  class TestPmdrssHash(TestCase):
 
             self.dut.send_expect("port stop all", "testpmd> ")
             # some nic not support change hash algorithm
-            self.dut.send_expect(
-                "set_hash_global_config 0 simple_xor %s enable" % iptype, "testpmd> ")
+            self.dut.send_expect("flow flush 0", "testpmd> ")
+            rule_cmd = f'flow create 0 ingress pattern eth / ipv4 / end actions rss types {iptype} end queues end {rule_action}'
+            if 'sctp' in iptype or 'udp' in iptype or 'tcp' in iptype:
+                rule_cmd = rule_cmd.replace('/ ipv4 /', f'/ ipv4 / {rsstype} /')
+            if 'ipv6' in iptype:
+                rule_cmd = rule_cmd.replace('ipv4', 'ipv6')
+            outx = self.dut.send_expect(rule_cmd, "testpmd> ")
+            self.verify("created" in outx, "Create flow failed")
             self.dut.send_expect("port start all", "testpmd> ")
             out = self.dut.send_expect(
                 "port config all rss %s" % rsstype, "testpmd> ")
@@ -575,48 +574,48 @@  class TestPmdrssHash(TestCase):
 
         self.dut.send_expect("quit", "# ", 30)
 
-    def test_simple_symmetric(self):
+        def test_simple_symmetric(self):
 
-        dutPorts = self.dut.get_ports(self.nic)
-        localPort = self.tester.get_local_port(dutPorts[0])
-        itf = self.tester.get_interface(localPort)
-        global reta_num
-        global iptypes
-        self.dut.kill_all()
+            dutPorts = self.dut.get_ports(self.nic)
+            localPort = self.tester.get_local_port(dutPorts[0])
+            itf = self.tester.get_interface(localPort)
+            global reta_num
+            global iptypes
+            self.dut.kill_all()
 
-        # test with different rss queues
-        self.dut.send_expect(
-            "%s %s -- -i --rxq=%d --txq=%d" %
-            (self.path, self.eal_para, queue, queue), "testpmd> ", 120)
-
-        for iptype, rsstype in list(iptypes.items()):
-            self.dut.send_expect("set verbose 8", "testpmd> ")
-            self.dut.send_expect("set fwd rxonly", "testpmd> ")
-            self.dut.send_expect("set promisc all off", "testpmd> ")
+            # test with different rss queues
             self.dut.send_expect(
-                "set nbcore %d" % (queue + 1), "testpmd> ")
+                "%s %s -- -i --rxq=%d --txq=%d" %
+                (self.path, self.eal_para, queue, queue), "testpmd> ", 120)
 
-            self.dut.send_expect("port stop all", "testpmd> ")
-            self.dut.send_expect(
-                "set_hash_global_config 0 simple_xor %s enable" % iptype, "testpmd> ")
-            self.dut.send_expect(
-                "set_sym_hash_ena_per_port 0 enable", "testpmd> ")
-            self.dut.send_expect("port start all", "testpmd> ")
+            for iptype, rsstype in list(iptypes.items()):
+                self.dut.send_expect("set verbose 8", "testpmd> ")
+                self.dut.send_expect("set fwd rxonly", "testpmd> ")
+                self.dut.send_expect("set promisc all off", "testpmd> ")
+                self.dut.send_expect(
+                    "set nbcore %d" % (queue + 1), "testpmd> ")
 
-            out = self.dut.send_expect(
-                "port config all rss %s" % rsstype, "testpmd> ")
-            self.verify("error" not in out, "Configuration of RSS hash failed: Invalid argument")
-            # configure the reta with specific mappings.
-            for i in range(reta_num):
-                reta_entries.insert(i, random.randint(0, queue - 1))
+                self.dut.send_expect("port stop all", "testpmd> ")
                 self.dut.send_expect(
-                    "port config 0 rss reta (%d,%d)" % (i, reta_entries[i]), "testpmd> ")
-            self.send_packet_symmetric(itf, iptype)
+                    "set_hash_global_config 0 simple_xor %s enable" % iptype, "testpmd> ")
+                self.dut.send_expect(
+                    "set_sym_hash_ena_per_port 0 enable", "testpmd> ")
+                self.dut.send_expect("port start all", "testpmd> ")
 
-        self.dut.send_expect("quit", "# ", 30)
+                out = self.dut.send_expect(
+                    "port config all rss %s" % rsstype, "testpmd> ")
+                self.verify("error" not in out, "Configuration of RSS hash failed: Invalid argument")
+                # configure the reta with specific mappings.
+                for i in range(reta_num):
+                    reta_entries.insert(i, random.randint(0, queue - 1))
+                    self.dut.send_expect(
+                        "port config 0 rss reta (%d,%d)" % (i, reta_entries[i]), "testpmd> ")
+                self.send_packet_symmetric(itf, iptype)
+
+            self.dut.send_expect("quit", "# ", 30)
 
     def test_dynamic_rss_bond_config(self):
-        
+
         # setup testpmd and finish bond config
         self.verify(self.nic in ["columbiaville_25g", "columbiaville_100g","fortville_eagle", "fortville_spirit",
                     "fortpark_TLV","fortpark_BASE-T", "fortville_25g", "carlsville", "foxville"],