* [dts] [PATCH V1] tests/TestSuite_rss_to_rte_flow:Modify the TCP type packet corresponding to the corresponding flow rule @ 2020-07-16 1:24 xizhan4x 2020-07-16 1:33 ` Zhang, XiX 0 siblings, 1 reply; 3+ messages in thread From: xizhan4x @ 2020-07-16 1:24 UTC (permalink / raw) To: dts; +Cc: xizhan4x Create ivp6 TCP flow rules, but send IPv4 TCP packets, modify to send IPv6 TCP packets Signed-off-by: xizhan4x <xix.zhang@intel.com> --- tests/TestSuite_rss_to_rte_flow.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/TestSuite_rss_to_rte_flow.py b/tests/TestSuite_rss_to_rte_flow.py index 21ba8dc..888f154 100644 --- a/tests/TestSuite_rss_to_rte_flow.py +++ b/tests/TestSuite_rss_to_rte_flow.py @@ -632,10 +632,10 @@ class TestRSS_to_Rteflow(TestCase): self.dut.send_expect( "flow create 0 ingress pattern eth / ipv6 / tcp / end actions rss types ipv6-tcp end queues end / end", "created") rss_queue = ["0", "1", "2", "3", "4", "5", "6", "7"] - pkts = [self.pkt2, self.pkt3] + pkts = [self.pkt2, self.pkt7] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] - pkts = [self.pkt1, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] + pkts = [self.pkt1, self.pkt3, self.pkt4, self.pkt5, self.pkt6, self.pkt8, self.pkt9, self.pkt10] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] pkts = [self.pkt1, self.pkt2, self.pkt3, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] @@ -645,10 +645,10 @@ class TestRSS_to_Rteflow(TestCase): self.dut.send_expect( "flow create 0 ingress pattern end actions rss types end queues 1 4 7 end / end", "created") rss_queue = ["1", "4", "7"] - pkts = [self.pkt2, self.pkt3] + pkts = [self.pkt2, self.pkt7] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] - pkts = [self.pkt1, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] + pkts = [self.pkt1, self.pkt3, self.pkt4, self.pkt5, self.pkt6, self.pkt8, self.pkt9, self.pkt10] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] pkts = [self.pkt1, self.pkt2, self.pkt3, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] @@ -660,10 +660,10 @@ class TestRSS_to_Rteflow(TestCase): self.dut.send_expect( "flow create 1 ingress pattern eth / ipv6 / end actions rss types ipv6-other end queues end / end", "created") rss_queue = ["1", "4", "7"] - pkts = [self.pkt2, self.pkt3] + pkts = [self.pkt2, self.pkt7] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] - pkts = [self.pkt1, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] + pkts = [self.pkt1, self.pkt3, self.pkt4, self.pkt5, self.pkt6, self.pkt8, self.pkt9, self.pkt10] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0", "1", "2", "3", "4", "5", "6", "7"] @@ -689,7 +689,7 @@ class TestRSS_to_Rteflow(TestCase): pkts = [self.pkt1, self.pkt2, self.pkt3, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] self.send_and_check(pkts, rss_queue, port_id=0) self.send_and_check(pkts, rss_queue, port_id=1) - + def test_flow_director_rss_rule_combination(self): """ Set RSS queue rule and flow director rule in meantime. -- 1.8.3.1 ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V1] tests/TestSuite_rss_to_rte_flow:Modify the TCP type packet corresponding to the corresponding flow rule 2020-07-16 1:24 [dts] [PATCH V1] tests/TestSuite_rss_to_rte_flow:Modify the TCP type packet corresponding to the corresponding flow rule xizhan4x @ 2020-07-16 1:33 ` Zhang, XiX 2020-07-16 8:47 ` Peng, Yuan 0 siblings, 1 reply; 3+ messages in thread From: Zhang, XiX @ 2020-07-16 1:33 UTC (permalink / raw) To: dts [-- Attachment #1: Type: text/plain, Size: 3873 bytes --] Tested-by: Zhang, XiX <xix.zhang@intel.com> -----Original Message----- From: Zhang, XiX Sent: Thursday, July 16, 2020 9:24 AM To: dts@dpdk.org Cc: Zhang, XiX <xix.zhang@intel.com> Subject: [dts][PATCH V1] tests/TestSuite_rss_to_rte_flow:Modify the TCP type packet corresponding to the corresponding flow rule Create ivp6 TCP flow rules, but send IPv4 TCP packets, modify to send IPv6 TCP packets Signed-off-by: xizhan4x <xix.zhang@intel.com> --- tests/TestSuite_rss_to_rte_flow.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/TestSuite_rss_to_rte_flow.py b/tests/TestSuite_rss_to_rte_flow.py index 21ba8dc..888f154 100644 --- a/tests/TestSuite_rss_to_rte_flow.py +++ b/tests/TestSuite_rss_to_rte_flow.py @@ -632,10 +632,10 @@ class TestRSS_to_Rteflow(TestCase): self.dut.send_expect( "flow create 0 ingress pattern eth / ipv6 / tcp / end actions rss types ipv6-tcp end queues end / end", "created") rss_queue = ["0", "1", "2", "3", "4", "5", "6", "7"] - pkts = [self.pkt2, self.pkt3] + pkts = [self.pkt2, self.pkt7] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] - pkts = [self.pkt1, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] + pkts = [self.pkt1, self.pkt3, self.pkt4, self.pkt5, self.pkt6, + self.pkt8, self.pkt9, self.pkt10] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] pkts = [self.pkt1, self.pkt2, self.pkt3, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] @@ -645,10 +645,10 @@ class TestRSS_to_Rteflow(TestCase): self.dut.send_expect( "flow create 0 ingress pattern end actions rss types end queues 1 4 7 end / end", "created") rss_queue = ["1", "4", "7"] - pkts = [self.pkt2, self.pkt3] + pkts = [self.pkt2, self.pkt7] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] - pkts = [self.pkt1, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] + pkts = [self.pkt1, self.pkt3, self.pkt4, self.pkt5, self.pkt6, + self.pkt8, self.pkt9, self.pkt10] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] pkts = [self.pkt1, self.pkt2, self.pkt3, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] @@ -660,10 +660,10 @@ class TestRSS_to_Rteflow(TestCase): self.dut.send_expect( "flow create 1 ingress pattern eth / ipv6 / end actions rss types ipv6-other end queues end / end", "created") rss_queue = ["1", "4", "7"] - pkts = [self.pkt2, self.pkt3] + pkts = [self.pkt2, self.pkt7] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] - pkts = [self.pkt1, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] + pkts = [self.pkt1, self.pkt3, self.pkt4, self.pkt5, self.pkt6, + self.pkt8, self.pkt9, self.pkt10] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0", "1", "2", "3", "4", "5", "6", "7"] @@ -689,7 +689,7 @@ class TestRSS_to_Rteflow(TestCase): pkts = [self.pkt1, self.pkt2, self.pkt3, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] self.send_and_check(pkts, rss_queue, port_id=0) self.send_and_check(pkts, rss_queue, port_id=1) - + def test_flow_director_rss_rule_combination(self): """ Set RSS queue rule and flow director rule in meantime. -- 1.8.3.1 [-- Attachment #2: TestRSS_to_Rteflow.log --] [-- Type: application/octet-stream, Size: 5499942 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V1] tests/TestSuite_rss_to_rte_flow:Modify the TCP type packet corresponding to the corresponding flow rule 2020-07-16 1:33 ` Zhang, XiX @ 2020-07-16 8:47 ` Peng, Yuan 0 siblings, 0 replies; 3+ messages in thread From: Peng, Yuan @ 2020-07-16 8:47 UTC (permalink / raw) To: Zhang, XiX, dts Acked-by Peng, Yuan <yuan.peng@intel.com> -----Original Message----- From: dts <dts-bounces@dpdk.org> On Behalf Of Zhang, XiX Sent: Thursday, July 16, 2020 9:34 AM To: dts@dpdk.org Subject: Re: [dts] [PATCH V1] tests/TestSuite_rss_to_rte_flow:Modify the TCP type packet corresponding to the corresponding flow rule Tested-by: Zhang, XiX <xix.zhang@intel.com> -----Original Message----- From: Zhang, XiX Sent: Thursday, July 16, 2020 9:24 AM To: dts@dpdk.org Cc: Zhang, XiX <xix.zhang@intel.com> Subject: [dts][PATCH V1] tests/TestSuite_rss_to_rte_flow:Modify the TCP type packet corresponding to the corresponding flow rule Create ivp6 TCP flow rules, but send IPv4 TCP packets, modify to send IPv6 TCP packets Signed-off-by: xizhan4x <xix.zhang@intel.com> --- tests/TestSuite_rss_to_rte_flow.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/TestSuite_rss_to_rte_flow.py b/tests/TestSuite_rss_to_rte_flow.py index 21ba8dc..888f154 100644 --- a/tests/TestSuite_rss_to_rte_flow.py +++ b/tests/TestSuite_rss_to_rte_flow.py @@ -632,10 +632,10 @@ class TestRSS_to_Rteflow(TestCase): self.dut.send_expect( "flow create 0 ingress pattern eth / ipv6 / tcp / end actions rss types ipv6-tcp end queues end / end", "created") rss_queue = ["0", "1", "2", "3", "4", "5", "6", "7"] - pkts = [self.pkt2, self.pkt3] + pkts = [self.pkt2, self.pkt7] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] - pkts = [self.pkt1, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] + pkts = [self.pkt1, self.pkt3, self.pkt4, self.pkt5, self.pkt6, + self.pkt8, self.pkt9, self.pkt10] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] pkts = [self.pkt1, self.pkt2, self.pkt3, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] @@ -645,10 +645,10 @@ class TestRSS_to_Rteflow(TestCase): self.dut.send_expect( "flow create 0 ingress pattern end actions rss types end queues 1 4 7 end / end", "created") rss_queue = ["1", "4", "7"] - pkts = [self.pkt2, self.pkt3] + pkts = [self.pkt2, self.pkt7] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] - pkts = [self.pkt1, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] + pkts = [self.pkt1, self.pkt3, self.pkt4, self.pkt5, self.pkt6, + self.pkt8, self.pkt9, self.pkt10] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] pkts = [self.pkt1, self.pkt2, self.pkt3, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] @@ -660,10 +660,10 @@ class TestRSS_to_Rteflow(TestCase): self.dut.send_expect( "flow create 1 ingress pattern eth / ipv6 / end actions rss types ipv6-other end queues end / end", "created") rss_queue = ["1", "4", "7"] - pkts = [self.pkt2, self.pkt3] + pkts = [self.pkt2, self.pkt7] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0"] - pkts = [self.pkt1, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] + pkts = [self.pkt1, self.pkt3, self.pkt4, self.pkt5, self.pkt6, + self.pkt8, self.pkt9, self.pkt10] self.send_and_check(pkts, rss_queue, port_id=0) rss_queue = ["0", "1", "2", "3", "4", "5", "6", "7"] @@ -689,7 +689,7 @@ class TestRSS_to_Rteflow(TestCase): pkts = [self.pkt1, self.pkt2, self.pkt3, self.pkt4, self.pkt5, self.pkt6, self.pkt7, self.pkt8, self.pkt9, self.pkt10] self.send_and_check(pkts, rss_queue, port_id=0) self.send_and_check(pkts, rss_queue, port_id=1) - + def test_flow_director_rss_rule_combination(self): """ Set RSS queue rule and flow director rule in meantime. -- 1.8.3.1 ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-07-16 8:47 UTC | newest] Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2020-07-16 1:24 [dts] [PATCH V1] tests/TestSuite_rss_to_rte_flow:Modify the TCP type packet corresponding to the corresponding flow rule xizhan4x 2020-07-16 1:33 ` Zhang, XiX 2020-07-16 8:47 ` Peng, Yuan
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).