From: Yinan <yinan.wang@intel.com>
To: dts@dpdk.org
Cc: Wang Yinan <yinan.wang@intel.com>
Subject: [dts] [PATCH 02/11 v1] test_plans: add packed ring cases for loopback_multi_queues
Date: Fri, 28 Feb 2020 06:09:38 +0000 [thread overview]
Message-ID: <20200228060947.26001-3-yinan.wang@intel.com> (raw)
In-Reply-To: <20200228060947.26001-1-yinan.wang@intel.com>
From: Wang Yinan <yinan.wang@intel.com>
Signed-off-by: Wang Yinan <yinan.wang@intel.com>
---
.../loopback_multi_queues_test_plan.rst | 473 ++++++++++++++----
1 file changed, 372 insertions(+), 101 deletions(-)
diff --git a/test_plans/loopback_multi_queues_test_plan.rst b/test_plans/loopback_multi_queues_test_plan.rst
index 2021c3e..75cfd8d 100644
--- a/test_plans/loopback_multi_queues_test_plan.rst
+++ b/test_plans/loopback_multi_queues_test_plan.rst
@@ -30,37 +30,33 @@
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
-=====================================================
-vhost/virtio-user loopback with multi-queue test plan
-=====================================================
+======================================================
+vhost/virtio-user loopback with multi-queues test plan
+======================================================
-Description
-===========
+This test plan test vhost/virtio-user loopback multi-queues with split virtqueue and packed virtqueue different rx/tx paths, includes split virtqueue in-order mergeable, in-order non-mergeable, mergeable, non-mergeable, vector_rx path test, and packed virtqueue in-order mergeable, in-order non-mergeable, mergeable, non-mergeable path. And virtio-user support 8 queues in maximum, check performance could be linear growth when enable 8 queues and 8 cores, notice cores should in same socket.
-Benchmark vhost/virtio-user loopback multi-queues test with 8 rx/tx paths, virtio-user support 8 queues in maximum.
-Includes mergeable, normal, vector_rx, inorder mergeable,
-inorder no-mergeable, virtio 1.1 mergeable, virtio 1.1 inorder, virtio 1.1 normal path.
+Test Case 1: loopback with virtio 1.1 mergeable path using 1 queue and 8 queues
+===============================================================================
-Test Case 1: loopback 2 queues test with virtio 1.1 mergeable path
-==================================================================
1. Launch testpmd by below command::
rm -rf vhost-net*
- ./testpmd -c 0xe -n 4 --socket-mem 1024,1024 --no-pci \
- --vdev 'eth_vhost0,iface=vhost-net,queues=2' -- \
- -i --nb-cores=2 --rxq=2 --txq=2 --txd=1024 --rxd=1024
+ ./testpmd -l 1-2 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=1' -- \
+ -i --nb-cores=1 --txd=1024 --rxd=1024
testpmd>set fwd mac
2. Launch virtio-user by below command::
- ./testpmd -n 4 -l 5-7 --socket-mem 1024,1024 \
+ ./testpmd -n 4 -l 5-6 --socket-mem 1024,1024 \
--legacy-mem --no-pci --file-prefix=virtio \
- --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=2,packed_vq=1,mrg_rxbuf=1,in_order=0 \
- -- -i --tx-offloads=0x0 --enable-hw-vlan-strip --rss-ip --nb-cores=2 --rxq=2 --txq=2 --txd=1024 --rxd=1024
- >set fwd mac
- >start
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=1,packed_vq=1,mrg_rxbuf=1,in_order=0 \
+ -- -i --nb-cores=1 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
-3. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
+3. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 1518]::
testpmd>set txpkts [frame_size]
testpmd>start tx_first 32
@@ -69,29 +65,56 @@ Test Case 1: loopback 2 queues test with virtio 1.1 mergeable path
testpmd>show port stats all
-5. Check each queue's RX/TX packet numbers::
+5. Check each RX/TX queue has packets, then quit testpmd::
testpmd>stop
+ testpmd>quit
+
+6. Launch testpmd by below command::
+
+ rm -rf vhost-net*
+ ./testpmd -l 1-9 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=8' -- \
+ -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+
+7. Launch virtio-user by below command::
+
+ ./testpmd -n 4 -l 10-18 --socket-mem 1024,1024 \
+ --legacy-mem --no-pci --file-prefix=virtio \
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=8,packed_vq=1,mrg_rxbuf=1,in_order=0 \
+ -- -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
-Test Case 2: loopback 2 queues test with virtio 1.1 normal path
-===============================================================
+8. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 1518]::
+
+ testpmd>set txpkts [frame_size]
+ testpmd>start tx_first 32
+
+9. Get throughput 10 times and calculate the average throughput,check the throughput of 8 queues is eight times of 1 queue::
+
+ testpmd>show port stats all
+
+Test Case 2: loopback with virtio 1.1 non-mergeable path using 1 queue and 8 queues
+===================================================================================
1. Launch testpmd by below command::
rm -rf vhost-net*
- ./testpmd -c 0xe -n 4 --socket-mem 1024,1024 --no-pci \
- --vdev 'eth_vhost0,iface=vhost-net,queues=2' -- \
- -i --nb-cores=2 --rxq=2 --txq=2 --txd=1024 --rxd=1024
+ ./testpmd -l 1-2 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=1' -- \
+ -i --nb-cores=1 --txd=1024 --rxd=1024
testpmd>set fwd mac
2. Launch virtio-user by below command::
- ./testpmd -n 4 -l 5-7 --socket-mem 1024,1024 \
+ ./testpmd -n 4 -l 5-6 --socket-mem 1024,1024 \
--legacy-mem --no-pci --file-prefix=virtio \
- --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=2,packed_vq=1,mrg_rxbuf=0,in_order=0 \
- -- -i --tx-offloads=0x0 --enable-hw-vlan-strip --rss-ip --nb-cores=2 --rxq=2 --txq=2 --txd=1024 --rxd=1024
- >set fwd mac
- >start
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=1,packed_vq=1,mrg_rxbuf=0,in_order=0 \
+ -- -i --nb-cores=1 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
3. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
@@ -102,29 +125,56 @@ Test Case 2: loopback 2 queues test with virtio 1.1 normal path
testpmd>show port stats all
-5. Check each queue's RX/TX packet numbers::
+5. Check each RX/TX queue has packets, then quit testpmd::
testpmd>stop
+ testpmd>quit
+
+6. Launch testpmd by below command::
-Test Case 3: loopback 2 queues test with virtio 1.1 inorder path
-================================================================
+ rm -rf vhost-net*
+ ./testpmd -l 1-9 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=8' -- \
+ -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+
+7. Launch virtio-user by below command::
+
+ ./testpmd -n 4 -l 10-18 --socket-mem 1024,1024 \
+ --legacy-mem --no-pci --file-prefix=virtio \
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=8,packed_vq=1,mrg_rxbuf=0,in_order=0 \
+ -- -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
+
+8. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
+
+ testpmd>set txpkts [frame_size]
+ testpmd>start tx_first 32
+
+9. Get throughput 10 times and calculate the average throughput,check the throughput of 8 queues is eight times of 1 queue::
+
+ testpmd>show port stats all
+
+Test Case 3: loopback with virtio 1.0 inorder mergeable path using 1 queue and 8 queues
+=======================================================================================
1. Launch testpmd by below command::
rm -rf vhost-net*
- ./testpmd -c 0xe -n 4 --socket-mem 1024,1024 --no-pci \
- --vdev 'eth_vhost0,iface=vhost-net,queues=2' -- \
- -i --nb-cores=2 --rxq=2 --txq=2 --txd=1024 --rxd=1024
+ ./testpmd -l 1-2 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=1' -- \
+ -i --nb-cores=1 --txd=1024 --rxd=1024
testpmd>set fwd mac
2. Launch virtio-user by below command::
- ./testpmd -n 4 -l 5-7 --socket-mem 1024,1024 \
+ ./testpmd -n 4 -l 5-6 --socket-mem 1024,1024 \
--legacy-mem --no-pci --file-prefix=virtio \
- --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=2,packed_vq=1,mrg_rxbuf=0,in_order=1 \
- -- -i --tx-offloads=0x0 --enable-hw-vlan-strip --rss-ip --nb-cores=2 --rxq=2 --txq=2 --txd=1024 --rxd=1024
- >set fwd mac
- >start
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=1,mrg_rxbuf=1,in_order=1 \
+ -- -i --nb-cores=1 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
3. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
@@ -135,29 +185,56 @@ Test Case 3: loopback 2 queues test with virtio 1.1 inorder path
testpmd>show port stats all
-5. Check each queue's RX/TX packet numbers::
+5. Check each RX/TX queue has packets, then quit testpmd::
testpmd>stop
+ testpmd>quit
+
+6. Launch testpmd by below command::
+
+ rm -rf vhost-net*
+ ./testpmd -l 1-9 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=8' -- \
+ -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+
+7. Launch virtio-user by below command::
+
+ ./testpmd -n 4 -l 10-18 --socket-mem 1024,1024 \
+ --legacy-mem --no-pci --file-prefix=virtio \
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=8,mrg_rxbuf=1,in_order=1 \
+ -- -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
-Test Case 4: loopback 2 queues test with inorder mergeable path
-===============================================================
+8. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
+
+ testpmd>set txpkts [frame_size]
+ testpmd>start tx_first 32
+
+9. Get throughput 10 times and calculate the average throughput,check the throughput of 8 queues is eight times of 1 queue::
+
+ testpmd>show port stats all
+
+Test Case 4: loopback with virtio 1.0 inorder non-mergeable path using 1 queue and 8 queues
+===========================================================================================
1. Launch testpmd by below command::
rm -rf vhost-net*
- ./testpmd -c 0xe -n 4 --socket-mem 1024,1024 --no-pci \
- --vdev 'eth_vhost0,iface=vhost-net,queues=2' -- \
- -i --nb-cores=2 --rxq=2 --txq=2 --txd=1024 --rxd=1024
+ ./testpmd -l 1-2 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=1' -- \
+ -i --nb-cores=1 --txd=1024 --rxd=1024
testpmd>set fwd mac
2. Launch virtio-user by below command::
- ./testpmd -n 4 -l 5-7 --socket-mem 1024,1024 \
+ ./testpmd -n 4 -l 5-6 --socket-mem 1024,1024 \
--legacy-mem --no-pci --file-prefix=virtio \
- --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=2,in_order=1,mrg_rxbuf=1 \
- -- -i --tx-offloads=0x0 --enable-hw-vlan-strip --rss-ip --nb-cores=2 --rxq=2 --txq=2 --txd=1024 --rxd=1024
- >set fwd mac
- >start
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=1,mrg_rxbuf=0,in_order=1 \
+ -- -i --nb-cores=1 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
3. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
@@ -168,29 +245,56 @@ Test Case 4: loopback 2 queues test with inorder mergeable path
testpmd>show port stats all
-5. Check each queue's RX/TX packet numbers::
+5. Check each RX/TX queue has packets, then quit testpmd::
testpmd>stop
+ testpmd>quit
+
+6. Launch testpmd by below command::
+
+ rm -rf vhost-net*
+ ./testpmd -l 1-9 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=8' -- \
+ -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+
+7. Launch virtio-user by below command::
+
+ ./testpmd -n 4 -l 10-18 --socket-mem 1024,1024 \
+ --legacy-mem --no-pci --file-prefix=virtio \
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=8,mrg_rxbuf=0,in_order=1 \
+ -- -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
+
+8. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
+
+ testpmd>set txpkts [frame_size]
+ testpmd>start tx_first 32
+
+9. Get throughput 10 times and calculate the average throughput,check the throughput of 8 queues is eight times of 1 queue::
-Test Case 5: loopback 2 queues test with inorder no-mergeable path
-==================================================================
+ testpmd>show port stats all
+
+Test Case 5: loopback with virtio 1.0 mergeable path using 1 queue and 8 queues
+===============================================================================
1. Launch testpmd by below command::
rm -rf vhost-net*
- ./testpmd -c 0xe -n 4 --socket-mem 1024,1024 --no-pci \
- --vdev 'eth_vhost0,iface=vhost-net,queues=2' -- \
- -i --nb-cores=2 --rxq=2 --txq=2 --txd=1024 --rxd=1024
+ ./testpmd -l 1-2 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=1' -- \
+ -i --nb-cores=1 --txd=1024 --rxd=1024
testpmd>set fwd mac
2. Launch virtio-user by below command::
- ./testpmd -n 4 -l 5-7 --socket-mem 1024,1024 \
+ ./testpmd -n 4 -l 5-6 --socket-mem 1024,1024 \
--legacy-mem --no-pci --file-prefix=virtio \
- --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=2,in_order=1,mrg_rxbuf=0 \
- -- -i --tx-offloads=0x0 --enable-hw-vlan-strip --rss-ip --nb-cores=2 --rxq=2 --txq=2 --txd=1024 --rxd=1024
- >set fwd mac
- >start
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=1,mrg_rxbuf=1,in_order=0 \
+ -- -i --nb-cores=1 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
3. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
@@ -201,29 +305,56 @@ Test Case 5: loopback 2 queues test with inorder no-mergeable path
testpmd>show port stats all
-5. Check each queue's RX/TX packet numbers::
+5. Check each RX/TX queue has packets, then quit testpmd::
testpmd>stop
+ testpmd>quit
+
+6. Launch testpmd by below command::
+
+ rm -rf vhost-net*
+ ./testpmd -l 1-9 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=8' -- \
+ -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+
+7. Launch virtio-user by below command::
+
+ ./testpmd -n 4 -l 10-18 --socket-mem 1024,1024 \
+ --legacy-mem --no-pci --file-prefix=virtio \
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=8,mrg_rxbuf=1,in_order=0 \
+ -- -i --enable-hw-vlan-strip --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
+
+8. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
+
+ testpmd>set txpkts [frame_size]
+ testpmd>start tx_first 32
-Test Case 6: loopback 8 queues test with mergeable path
-=======================================================
+9. Get throughput 10 times and calculate the average throughput,check the throughput of 8 queues is eight times of 1 queue::
+
+ testpmd>show port stats all
+
+Test Case 6: loopback with virtio 1.0 non-mergeable path using 1 queue and 8 queues
+===================================================================================
1. Launch testpmd by below command::
rm -rf vhost-net*
- ./testpmd -l 2-6 -n 4 --socket-mem 1024,1024 --no-pci \
- --vdev 'eth_vhost0,iface=vhost-net,queues=8' -- \
- -i --nb-cores=4 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ ./testpmd -l 1-2 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=1' -- \
+ -i --nb-cores=1 --txd=1024 --rxd=1024
testpmd>set fwd mac
2. Launch virtio-user by below command::
- ./testpmd -n 4 -l 7-11 --socket-mem 1024,1024 \
+ ./testpmd -n 4 -l 5-6 --socket-mem 1024,1024 \
--legacy-mem --no-pci --file-prefix=virtio \
- --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=8,in_order=0,mrg_rxbuf=1 \
- -- -i --tx-offloads=0x0 --enable-hw-vlan-strip --rss-ip --nb-cores=4--rxq=8 --txq=8 --txd=1024 --rxd=1024
- >set fwd mac
- >start
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=1,mrg_rxbuf=0,in_order=0 \
+ -- -i --enable-hw-vlan-strip --nb-cores=1 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
3. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
@@ -234,30 +365,56 @@ Test Case 6: loopback 8 queues test with mergeable path
testpmd>show port stats all
-5. Check each queue's RX/TX packet numbers::
+5. Check each RX/TX queue has packets, then quit testpmd::
testpmd>stop
+ testpmd>quit
+
+6. Launch testpmd by below command::
+ rm -rf vhost-net*
+ ./testpmd -l 1-9 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=8' -- \
+ -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+
+7. Launch virtio-user by below command::
+
+ ./testpmd -n 4 -l 10-18 --socket-mem 1024,1024 \
+ --legacy-mem --no-pci --file-prefix=virtio \
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=8,mrg_rxbuf=0,in_order=0 \
+ -- -i --enable-hw-vlan-strip --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
+
+8. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
+
+ testpmd>set txpkts [frame_size]
+ testpmd>start tx_first 32
-Test Case 7: loopback 8 queues test with normal path
-====================================================
+9. Get throughput 10 times and calculate the average throughput,check the throughput of 8 queues is eight times of 1 queue::
-1. Launch vhost by below command::
+ testpmd>show port stats all
+
+Test Case 7: loopback with virtio 1.0 vector_rx path using 1 queue and 8 queues
+===============================================================================
+
+1. Launch testpmd by below command::
rm -rf vhost-net*
- ./testpmd -n 4 -l 2-6 --socket-mem 1024,1024 --legacy-mem --no-pci \
- --file-prefix=vhost --vdev 'net_vhost0,iface=vhost-net,queues=8' -- \
- -i --nb-cores=4 --rxq=8 --txq=8 --txd=1024 --rxd=1024
- >set fwd mac
+ ./testpmd -l 1-2 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=1' -- \
+ -i --nb-cores=1 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
2. Launch virtio-user by below command::
- ./testpmd -n 4 -l 7-11 --socket-mem 1024,1024 \
+ ./testpmd -n 4 -l 5-6 --socket-mem 1024,1024 \
--legacy-mem --no-pci --file-prefix=virtio \
- --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=8,in_order=0,mrg_rxbuf=0 \
- -- -i --tx-offloads=0x0 --enable-hw-vlan-strip --rss-ip --nb-cores=4 --rxq=8 --txq=8 --txd=1024 --rxd=1024
- >set fwd mac
- >start
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=1,mrg_rxbuf=0,in_order=0 \
+ -- -i --nb-cores=1 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
3. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
@@ -268,29 +425,116 @@ Test Case 7: loopback 8 queues test with normal path
testpmd>show port stats all
-5. Check each queue's RX/TX packet numbers::
+5. Check each RX/TX queue has packets, then quit testpmd::
testpmd>stop
+ testpmd>quit
-Test Case 8: loopback 8 queues test with vector_rx path
-=======================================================
+6. Launch testpmd by below command::
-1. Launch vhost by below command::
+ rm -rf vhost-net*
+ ./testpmd -l 1-9 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=8' -- \
+ -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+
+7. Launch virtio-user by below command::
+
+ ./testpmd -n 4 -l 10-18 --socket-mem 1024,1024 \
+ --legacy-mem --no-pci --file-prefix=virtio \
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=8,mrg_rxbuf=0,in_order=0 \
+ -- -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
+
+8. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
+
+ testpmd>set txpkts [frame_size]
+ testpmd>start tx_first 32
+
+9. Get throughput 10 times and calculate the average throughput,check the throughput of 8 queues is eight times of 1 queue::
+
+ testpmd>show port stats all
+
+Test Case 8: loopback with virtio 1.1 inorder mergeable path using 1 queue and 8 queues
+=======================================================================================
+
+1. Launch testpmd by below command::
rm -rf vhost-net*
- ./testpmd -n 4 -l 2-6 --socket-mem 1024,1024 --legacy-mem --no-pci \
- --file-prefix=vhost --vdev 'net_vhost0,iface=vhost-net,queues=8' -- \
- -i --nb-cores=4 --rxq=8 --txq=8 --txd=1024 --rxd=1024
- >set fwd mac
+ ./testpmd -l 1-2 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=1' -- \
+ -i --nb-cores=1 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
2. Launch virtio-user by below command::
- ./testpmd -n 4 -l 7-11 --socket-mem 1024,1024 \
+ ./testpmd -n 4 -l 5-6 --socket-mem 1024,1024 \
--legacy-mem --no-pci --file-prefix=virtio \
- --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=8,in_order=0,mrg_rxbuf=0 \
- -- -i --tx-offloads=0x0 --rss-ip --nb-cores=4 --rxq=8 --txq=8 --txd=1024 --rxd=1024
- >set fwd mac
- >start
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=1,packed_vq=1,mrg_rxbuf=1,in_order=1 \
+ -- -i --nb-cores=1 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
+
+3. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 1518]::
+
+ testpmd>set txpkts [frame_size]
+ testpmd>start tx_first 32
+
+4. Get throughput 10 times and calculate the average throughput::
+
+ testpmd>show port stats all
+
+5. Check each RX/TX queue has packets, then quit testpmd::
+
+ testpmd>stop
+ testpmd>quit
+
+6. Launch testpmd by below command::
+
+ rm -rf vhost-net*
+ ./testpmd -l 1-9 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=8' -- \
+ -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+
+7. Launch virtio-user by below command::
+
+ ./testpmd -n 4 -l 10-18 --socket-mem 1024,1024 \
+ --legacy-mem --no-pci --file-prefix=virtio \
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=8,packed_vq=1,mrg_rxbuf=1,in_order=0 \
+ -- -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
+
+8. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 1518]::
+
+ testpmd>set txpkts [frame_size]
+ testpmd>start tx_first 32
+
+9. Get throughput 10 times and calculate the average throughput,check the throughput of 8 queues is eight times of 1 queue::
+
+ testpmd>show port stats all
+
+Test Case 9: loopback with virtio 1.1 inorder non-mergeable path using 1 queue and 8 queues
+===========================================================================================
+
+1. Launch testpmd by below command::
+
+ rm -rf vhost-net*
+ ./testpmd -l 1-2 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=1' -- \
+ -i --nb-cores=1 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+
+2. Launch virtio-user by below command::
+
+ ./testpmd -n 4 -l 5-6 --socket-mem 1024,1024 \
+ --legacy-mem --no-pci --file-prefix=virtio \
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=1,packed_vq=1,mrg_rxbuf=0,in_order=1 \
+ -- -i --nb-cores=1 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
3. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
@@ -301,6 +545,33 @@ Test Case 8: loopback 8 queues test with vector_rx path
testpmd>show port stats all
-5. Check each queue's RX/TX packet numbers::
+5. Check each RX/TX queue has packets, then quit testpmd::
testpmd>stop
+ testpmd>quit
+
+6. Launch testpmd by below command::
+
+ rm -rf vhost-net*
+ ./testpmd -l 1-9 -n 4 --socket-mem 1024,1024 --no-pci \
+ --vdev 'eth_vhost0,iface=vhost-net,queues=8' -- \
+ -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+
+7. Launch virtio-user by below command::
+
+ ./testpmd -n 4 -l 10-18 --socket-mem 1024,1024 \
+ --legacy-mem --no-pci --file-prefix=virtio \
+ --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,queues=8,packed_vq=1,mrg_rxbuf=0,in_order=0 \
+ -- -i --nb-cores=8 --rxq=8 --txq=8 --txd=1024 --rxd=1024
+ testpmd>set fwd mac
+ testpmd>start
+
+8. Send packets with vhost-testpmd,[frame_size] is the parameter changs in [64, 128, 256, 512, 1024, 1518]::
+
+ testpmd>set txpkts [frame_size]
+ testpmd>start tx_first 32
+
+9. Get throughput 10 times and calculate the average throughput,check the throughput of 8 queues is eight times of 1 queue::
+
+ testpmd>show port stats all
\ No newline at end of file
--
2.17.1
next prev parent reply other threads:[~2020-02-28 13:15 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-28 6:09 [dts] [PATCH 00/11 v1] test_plans: add packed ring cases Yinan
2020-02-28 6:09 ` [dts] [PATCH 01/11 v1] test_plans: add packed ring cases for loopback_multi_paths_port_restart Yinan
2020-02-28 6:09 ` Yinan [this message]
2020-02-28 6:09 ` [dts] [PATCH 03/11 v1] test_plans: add packed ring test case for pvp_virtio_user_2M_hugepages Yinan
2020-02-28 6:09 ` [dts] [PATCH 04/11 v1] test_plans: add packed ring cases for pvp_virtio_user_4k_pages Yinan
2020-02-28 6:09 ` [dts] [PATCH 05/11 v1] test_plans: add packed ring test case for vhost_enqueue_interrupt Yinan
2020-02-28 6:09 ` [dts] [PATCH 06/11 v1] test_plans: add packed ring test cases for vhost_event_idx_interrupt Yinan
2020-02-28 6:09 ` [dts] [PATCH 07/11 v1] test_plans: add packed ring test cases for vhost_user_live_migration Yinan
2020-02-28 6:09 ` [dts] [PATCH 08/11 v1] test_plans: add packed ring test cases for vhost_virtio_pmd_interrupt Yinan
2020-02-28 6:09 ` [dts] [PATCH 09/11 v1] test_plans: add packed ring test cases for vhost_virtio_user_interrupt Yinan
2020-02-28 6:09 ` [dts] [PATCH 10/11 v1] test_plans: add test cases for virtio_event_idx_interrupt Yinan
2020-02-28 6:09 ` [dts] [PATCH 11/11 v1] test_plans: add packed ring test cases for virtio_pvp_regression Yinan
2020-03-03 7:28 ` [dts] [PATCH 00/11 v1] test_plans: add packed ring cases Tu, Lijuan
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=20200228060947.26001-3-yinan.wang@intel.com \
--to=yinan.wang@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).