test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH] TestSuite_rss_to_rte_flow.py: Adding priority to rules to avoid overlapping in cavium_a063
@ 2019-10-31  6:22 nareddy
  0 siblings, 0 replies; only message in thread
From: nareddy @ 2019-10-31  6:22 UTC (permalink / raw)
  To: dts; +Cc: fmasood, avijay, pvukkisala, Praneeth Reddy

From: Praneeth Reddy <nareddy@marvell.com>

According to RTE FLow spec, if we add the overlapping rules with same priority, behavior is unknown
So added priority for each rule

Signed-off-by: Praneeth Reddy <nareddy@marvell.com>
---
 tests/TestSuite_rss_to_rte_flow.py | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/tests/TestSuite_rss_to_rte_flow.py b/tests/TestSuite_rss_to_rte_flow.py
index 1198c3e..e745e14 100644
--- a/tests/TestSuite_rss_to_rte_flow.py
+++ b/tests/TestSuite_rss_to_rte_flow.py
@@ -538,8 +538,12 @@ class TestRSS_to_Rteflow(TestCase):
         time.sleep(2)
 
         # Create a rss queue rule
-        self.dut.send_expect(
-            "flow create 0 ingress pattern end actions rss types udp end queues 3 4 5 end / end", "created")
+        if (self.nic in ["cavium_a063", "cavium_a064"]):
+            self.dut.send_expect(
+                "flow create 0 ingress priority 2 pattern end actions rss types udp end queues 3 4 5 end / end", "created")
+        else:
+            self.dut.send_expect(
+                "flow create 0 ingress pattern end actions rss types udp end queues 3 4 5 end / end", "created")
         # send the packets and verify the results
         rss_queue = ["3", "4", "5"]
         self.send_and_check(self.pkt2, rss_queue)
@@ -551,6 +555,10 @@ class TestRSS_to_Rteflow(TestCase):
             rss_queue = ["1"]
             pkt = "Ether(dst='%s')/IP(src='10.0.0.1',dst='192.168.0.2',proto=6)/UDP(dport=50, sport=50)/('X'*48)" % self.pf_mac
             self.send_and_check(pkt, rss_queue)
+        elif (self.nic in ["cavium_a063", "cavium_a064"]):
+            # Create a flow director rule
+            self.dut.send_expect(
+                "flow create 0 ingress priority 1 pattern eth / ipv4 src is 10.0.0.1 dst is 192.168.0.2 / udp src is 50 dst is 50 / end actions queue index 1 / end", "created")
         else:
             # Create a flow director rule
             self.dut.send_expect(
-- 
1.8.3.1


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-10-31  6:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-31  6:22 [dts] [PATCH] TestSuite_rss_to_rte_flow.py: Adding priority to rules to avoid overlapping in cavium_a063 nareddy

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).