test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts][PATCH V1 0/2] modify vm2vm_virtio_net_perf_dsa test_plan and testsuite
@ 2023-01-31  8:12 Dukai Yuan
  2023-01-31  8:13 ` [dts][PATCH V1 1/2] tests/vm2vm_virtio_net_perf_dsa: modify packed ring non-mergeable path tso=0 Dukai Yuan
  2023-01-31  8:13 ` [dts][PATCH V1 2/2] test_plans/vm2vm_virtio_net_perf_dsa: " Dukai Yuan
  0 siblings, 2 replies; 3+ messages in thread
From: Dukai Yuan @ 2023-01-31  8:12 UTC (permalink / raw)
  To: dts; +Cc: Dukai Yuan

Modify start virtio back-end side testpmd parameter from 'tso=1' to 'tso=0' 
to cover packed ring non-merageable path with disable tso.

Dukai Yuan (2):
  tests/vm2vm_virtio_net_perf_dsa: modify packed ring non-mergeable path
    tso=0
  test_plans/vm2vm_virtio_net_perf_dsa: modify packed ring non-mergeable
    path tso=0

 test_plans/vm2vm_virtio_net_perf_dsa_test_plan.rst | 8 ++++----
 tests/TestSuite_vm2vm_virtio_net_perf_dsa.py       | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [dts][PATCH V1 1/2] tests/vm2vm_virtio_net_perf_dsa: modify packed ring non-mergeable path tso=0
  2023-01-31  8:12 [dts][PATCH V1 0/2] modify vm2vm_virtio_net_perf_dsa test_plan and testsuite Dukai Yuan
@ 2023-01-31  8:13 ` Dukai Yuan
  2023-01-31  8:13 ` [dts][PATCH V1 2/2] test_plans/vm2vm_virtio_net_perf_dsa: " Dukai Yuan
  1 sibling, 0 replies; 3+ messages in thread
From: Dukai Yuan @ 2023-01-31  8:13 UTC (permalink / raw)
  To: dts; +Cc: Dukai Yuan

Modify start virtio back-end side testpmd parameter from
'tso=1' to 'tso=0' to cover packed ring non-merageable path
with disable tso.

Signed-off-by: Dukai Yuan <dukaix.yuan@intel.com>
---
 tests/TestSuite_vm2vm_virtio_net_perf_dsa.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/TestSuite_vm2vm_virtio_net_perf_dsa.py b/tests/TestSuite_vm2vm_virtio_net_perf_dsa.py
index b06e5ca6..6ad8ac7d 100644
--- a/tests/TestSuite_vm2vm_virtio_net_perf_dsa.py
+++ b/tests/TestSuite_vm2vm_virtio_net_perf_dsa.py
@@ -735,8 +735,8 @@ class TestVM2VMVirtioNetPerfDsa(TestCase):
             self.use_dsa_list[1]: "max_queues=8",
         }
         vhost_eal_param = (
-            "--vdev 'eth_vhost0,iface=vhost-net0,queues=8,tso=1,dmas=[%s]' "
-            "--vdev 'eth_vhost1,iface=vhost-net1,queues=8,tso=1,dmas=[%s]'"
+            "--vdev 'eth_vhost0,iface=vhost-net0,queues=8,tso=0,dmas=[%s]' "
+            "--vdev 'eth_vhost1,iface=vhost-net1,queues=8,tso=0,dmas=[%s]'"
             % (dmas1, dmas2)
         )
         vhost_param = "--nb-cores=4 --txd=1024 --rxd=1024 --rxq=8 --txq=8"
@@ -1259,8 +1259,8 @@ class TestVM2VMVirtioNetPerfDsa(TestCase):
             "rxq7@wq0.3"
         )
         vhost_eal_param = (
-            "--vdev 'eth_vhost0,iface=vhost-net0,queues=8,tso=1,dmas=[%s]' "
-            "--vdev 'eth_vhost1,iface=vhost-net1,queues=8,tso=1,dmas=[%s]'"
+            "--vdev 'eth_vhost0,iface=vhost-net0,queues=8,tso=0,dmas=[%s]' "
+            "--vdev 'eth_vhost1,iface=vhost-net1,queues=8,tso=0,dmas=[%s]'"
             % (dmas1, dmas2)
         )
         vhost_param = "--nb-cores=4 --txd=1024 --rxd=1024 --rxq=8 --txq=8"
-- 
2.17.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [dts][PATCH V1 2/2] test_plans/vm2vm_virtio_net_perf_dsa: modify packed ring non-mergeable path tso=0
  2023-01-31  8:12 [dts][PATCH V1 0/2] modify vm2vm_virtio_net_perf_dsa test_plan and testsuite Dukai Yuan
  2023-01-31  8:13 ` [dts][PATCH V1 1/2] tests/vm2vm_virtio_net_perf_dsa: modify packed ring non-mergeable path tso=0 Dukai Yuan
@ 2023-01-31  8:13 ` Dukai Yuan
  1 sibling, 0 replies; 3+ messages in thread
From: Dukai Yuan @ 2023-01-31  8:13 UTC (permalink / raw)
  To: dts; +Cc: Dukai Yuan

Modify start virtio back-end side testpmd parameter from
'tso=1' to 'tso=0' to cover packed ring non-merageable path
with disable tso.

Signed-off-by: Dukai Yuan <dukaix.yuan@intel.com>
---
 test_plans/vm2vm_virtio_net_perf_dsa_test_plan.rst | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/test_plans/vm2vm_virtio_net_perf_dsa_test_plan.rst b/test_plans/vm2vm_virtio_net_perf_dsa_test_plan.rst
index 0e742387..2c52cb0a 100644
--- a/test_plans/vm2vm_virtio_net_perf_dsa_test_plan.rst
+++ b/test_plans/vm2vm_virtio_net_perf_dsa_test_plan.rst
@@ -519,8 +519,8 @@ The dynamic change of multi-queues number also test.
 2. Launch the Vhost sample by below commands::
 
 	<dpdk dir># ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1-5 -n 4 --file-prefix=vhost -a 0000:f1:01.0,max_queues=8 -a 0000:f6:01.0,max_queues=8 \
-	--vdev 'net_vhost0,iface=vhost-net0,queues=8,tso=1,dmas=[txq0@0000:f1:01.0-q0;txq1@0000:f1:01.0-q1;txq2@0000:f1:01.0-q2;txq3@0000:f1:01.0-q3;txq4@0000:f1:01.0-q4;txq5@0000:f1:01.0-q5;rxq2@0000:f1:01.0-q6;rxq3@0000:f1:01.0-q6;rxq4@0000:f1:01.0-q7;rxq5@0000:f1:01.0-q7;rxq6@0000:f1:01.0-q7;rxq7@0000:f1:01.0-q7]' \
-	--vdev 'net_vhost1,iface=vhost-net1,queues=8,tso=1,dmas=[txq2@0000:f6:01.0-q0;txq3@0000:f6:01.0-q1;txq4@0000:f6:01.0-q2;txq5@0000:f6:01.0-q3;txq6@0000:f6:01.0-q4;txq7@0000:f6:01.0-q5;rxq0@0000:f6:01.0-q6;rxq1@0000:f6:01.0-q6;rxq2@0000:f6:01.0-q7;rxq3@0000:f6:01.0-q7;rxq4@0000:f6:01.0-q7;rxq5@0000:f6:01.0-q7]' \
+	--vdev 'net_vhost0,iface=vhost-net0,queues=8,tso=0,dmas=[txq0@0000:f1:01.0-q0;txq1@0000:f1:01.0-q1;txq2@0000:f1:01.0-q2;txq3@0000:f1:01.0-q3;txq4@0000:f1:01.0-q4;txq5@0000:f1:01.0-q5;rxq2@0000:f1:01.0-q6;rxq3@0000:f1:01.0-q6;rxq4@0000:f1:01.0-q7;rxq5@0000:f1:01.0-q7;rxq6@0000:f1:01.0-q7;rxq7@0000:f1:01.0-q7]' \
+	--vdev 'net_vhost1,iface=vhost-net1,queues=8,tso=0,dmas=[txq2@0000:f6:01.0-q0;txq3@0000:f6:01.0-q1;txq4@0000:f6:01.0-q2;txq5@0000:f6:01.0-q3;txq6@0000:f6:01.0-q4;txq7@0000:f6:01.0-q5;rxq0@0000:f6:01.0-q6;rxq1@0000:f6:01.0-q6;rxq2@0000:f6:01.0-q7;rxq3@0000:f6:01.0-q7;rxq4@0000:f6:01.0-q7;rxq5@0000:f6:01.0-q7]' \
 	--iova=va -- -i --nb-cores=4 --txd=1024 --rxd=1024 --rxq=8 --txq=8
 	testpmd>start
 
@@ -1112,8 +1112,8 @@ The dynamic change of multi-queues number also test.
 2. Launch the Vhost sample by below commands::
 
 	<dpdk dir># ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1-5 -n 4 --file-prefix=vhost \
-	--vdev 'net_vhost0,iface=vhost-net0,queues=8,tso=1,dmas=[txq0@wq0.0;txq1@wq0.0;txq2@wq0.1;txq3@wq0.1;txq4@wq0.2;txq5@wq0.2;txq6@wq0.3;txq7@wq0.3;rxq0@wq0.0;rxq1@wq0.0;rxq2@wq0.1;rxq3@wq0.1;rxq4@wq0.2;rxq5@wq0.2;rxq6@wq0.3;rxq7@wq0.3]' \
-	--vdev 'net_vhost1,iface=vhost-net1,queues=8,tso=1,dmas=[txq0@wq0.0;txq1@wq0.0;txq2@wq0.1;txq3@wq0.1;txq4@wq0.2;txq5@wq0.2;txq6@wq0.3;txq7@wq0.3;rxq0@wq0.0;rxq1@wq0.0;rxq2@wq0.1;rxq3@wq0.1;rxq4@wq0.2;rxq5@wq0.2;rxq6@wq0.3;rxq7@wq0.3]' \
+	--vdev 'net_vhost0,iface=vhost-net0,queues=8,tso=0,dmas=[txq0@wq0.0;txq1@wq0.0;txq2@wq0.1;txq3@wq0.1;txq4@wq0.2;txq5@wq0.2;txq6@wq0.3;txq7@wq0.3;rxq0@wq0.0;rxq1@wq0.0;rxq2@wq0.1;rxq3@wq0.1;rxq4@wq0.2;rxq5@wq0.2;rxq6@wq0.3;rxq7@wq0.3]' \
+	--vdev 'net_vhost1,iface=vhost-net1,queues=8,tso=0,dmas=[txq0@wq0.0;txq1@wq0.0;txq2@wq0.1;txq3@wq0.1;txq4@wq0.2;txq5@wq0.2;txq6@wq0.3;txq7@wq0.3;rxq0@wq0.0;rxq1@wq0.0;rxq2@wq0.1;rxq3@wq0.1;rxq4@wq0.2;rxq5@wq0.2;rxq6@wq0.3;rxq7@wq0.3]' \
 	--iova=va -- -i --nb-cores=4 --txd=1024 --rxd=1024 --rxq=8 --txq=8
 	testpmd>start
 
-- 
2.17.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-01-31  8:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-31  8:12 [dts][PATCH V1 0/2] modify vm2vm_virtio_net_perf_dsa test_plan and testsuite Dukai Yuan
2023-01-31  8:13 ` [dts][PATCH V1 1/2] tests/vm2vm_virtio_net_perf_dsa: modify packed ring non-mergeable path tso=0 Dukai Yuan
2023-01-31  8:13 ` [dts][PATCH V1 2/2] test_plans/vm2vm_virtio_net_perf_dsa: " Dukai 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).