[V1,1/2] test_plans/vm2vm_virtio_user_cbdma_test_plan: modify the dmas parameter by DPDK changed

Message ID 20221110032039.1813921-1-weix.ling@intel.com (mailing list archive)
State Superseded
Headers
Series modify the dmas parameter by DPDK changed |

Commit Message

Ling, WeiX Nov. 10, 2022, 3:20 a.m. UTC
  From DPDK-22.11, the dmas parameter have changed, so modify the dmas
parameter in the testplan.

Signed-off-by: Wei Ling <weix.ling@intel.com>
---
 .../vm2vm_virtio_user_cbdma_test_plan.rst     | 467 ++++++++----------
 1 file changed, 212 insertions(+), 255 deletions(-)
  

Patch

diff --git a/test_plans/vm2vm_virtio_user_cbdma_test_plan.rst b/test_plans/vm2vm_virtio_user_cbdma_test_plan.rst
index caf1a96b..eff4aef0 100644
--- a/test_plans/vm2vm_virtio_user_cbdma_test_plan.rst
+++ b/test_plans/vm2vm_virtio_user_cbdma_test_plan.rst
@@ -2,17 +2,31 @@ 
    Copyright(c) 2022 Intel Corporation
 
 
-==================================================
+=================================================
 VM2VM vhost-user/virtio-user with CBDMA test plan
-==================================================
+=================================================
 
 Description
 ===========
 
-Vhost asynchronous data path leverages DMA devices to offload memory copies from the CPU and it is implemented in an asynchronous way.
-In addition, vhost supports M:N mapping between vrings and DMA virtual channels. Specifically, one vring can use multiple different DMA
-channels and one DMA channel can be shared by multiple vrings at the same time. From DPDK22.07, Vhost enqueue and dequeue operation with
-CBDMA channels is supported in both split and packed ring.
+CBDMA is a kind of DMA engine, Vhost asynchronous data path leverages DMA devices
+to offload memory copies from the CPU and it is implemented in an asynchronous way.
+As a result, large packet copy can be accelerated by the DMA engine, and vhost can
+free CPU cycles for higher level functions.
+
+Asynchronous data path is enabled per tx/rx queue, and users need
+to specify the DMA device used by the tx/rx queue. Each tx/rx queue
+only supports to use one DMA device, but one DMA device can be shared
+among multiple tx/rx queues of different vhostpmd ports.
+
+Two PMD parameters are added:
+- dmas:	specify the used DMA device for a tx/rx queue
+(Default: no queues enable asynchronous data path)
+- dma-ring-size: DMA ring size.
+(Default: 4096).
+
+Here is an example:
+--vdev 'eth_vhost0,iface=./s0,dmas=[txq0@0000:00.01.0;rxq0@0000:00.01.1],dma-ring-size=4096'
 
 This document provides the test plan for testing the following features when Vhost-user using asynchronous data path with
 CBDMA channels in VM2VM virtio-user topology.
@@ -26,7 +40,7 @@  The split ring mergeable path use indirect descriptor, the 2000,2000,2000,2000 c
 Note:
 1.When DMA devices are bound to vfio driver, VA mode is the default and recommended. For PA mode, page by page mapping may
 exceed IOMMU's max capability, better to use 1G guest hugepage.
-2.DPDK local patch that about vhost pmd is needed when testing Vhost asynchronous data path with testpmd.
+2. DPDK local patch that about vhost pmd is needed when testing Vhost asynchronous data path with testpmd.
 
 For more about dpdk-testpmd sample, please refer to the DPDK docments:
 https://doc.dpdk.org/guides/testpmd_app_ug/run_app.html
@@ -78,23 +92,22 @@  Common steps
 
 Test Case 1: VM2VM split ring non-mergeable path multi-queues payload check with cbdma enable
 ---------------------------------------------------------------------------------------------
-This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user split ring non-mergeable path
-and multi-queues when vhost uses the asynchronous operations with CBDMA channels. Both iova as VA and PA mode test.
+This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user
+split ring non-mergeable path and multi-queues when vhost uses the asynchronous operations with CBDMA channels.
 
-1. Launch vhost by below command::
+1. Bind 2 CBDMA devices to vfio-pci, then launch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;txq1;rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;rxq0;rxq1]' \
-    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.0;rxq0@0000:00:04.0]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq1@0000:00:04.0;rxq0@0000:00:04.0;rxq1@0000:00:04.0]' \
+    --iova=va -- -i --nb-cores=2 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 2. Launch virtio-user1 by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 \
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 6-8 \
     --no-pci --file-prefix=virtio1 \
-    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net1,queues=2,server=1,mrg_rxbuf=0,in_order=0,queue_size=4096 \
-    -- -i --enable-hw-vlan-strip --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
+    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=2,server=1,mrg_rxbuf=0,in_order=0,queue_size=4096 \
+    -- -i --enable-hw-vlan-strip --nb-cores=2 --rxq=2 --txq=2 --txd=4096 --rxd=4096
     testpmd>set fwd rxonly
     testpmd>start
 
@@ -104,10 +117,9 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 
 4. Launch virtio-user0 and send packets::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 \
-    --no-pci --file-prefix=virtio \
-    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net0,queues=2,server=1,mrg_rxbuf=0,in_order=0,queue_size=4096 \
-    -- -i --enable-hw-vlan-strip --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 3-5 --no-pci --file-prefix=virtio \
+    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=2,server=1,mrg_rxbuf=0,in_order=0,queue_size=4096 \
+    -- -i --enable-hw-vlan-strip --nb-cores=2 --rxq=2 --txq=2 --txd=4096 --rxd=4096
     testpmd>set burst 1
     testpmd>set txpkts 64,128,256,512
     testpmd>start tx_first 27
@@ -127,13 +139,12 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
     testpmd>clear port stats all
     testpmd>start
 
-7. Quit and relaunch vhost with iova=pa by below command::
+7. Quit and relaunch vhost by below command::
 
 	./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 \
-	--vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;txq1;rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;rxq0;rxq1]' \
-	--iova=pa -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-	--lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1]
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.0;rxq0@0000:00:04.1;rxq1@0000:00:04.1]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.2;txq1@0000:00:04.2;rxq0@0000:00:04.3;rxq1@0000:00:04.3]' \
+	--iova=va -- -i --nb-cores=2 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 8. Attach pdump secondary process to primary process by same file-prefix::
 
@@ -156,22 +167,20 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 
 Test Case 2: VM2VM split ring inorder non-mergeable path multi-queues payload check with cbdma enable
 -----------------------------------------------------------------------------------------------------
-This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user split ring inorder non-mergeable path
-and multi-queues when vhost uses the asynchronous operations with CBDMA channels. Both iova as VA and PA mode test.
+This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user
+split ring inorder non-mergeable path and multi-queues when vhost uses the asynchronous operations with CBDMA channels.
 
-1. Launch vhost by below command::
+1. Bind 4 CBDMA devices to vfio-pci, launch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;txq1;rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;rxq0;rxq1]' \
-    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore11@0000:00:04.4]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.0;rxq0@0000:00:04.0]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq1@0000:00:04.0;rxq0@0000:00:04.0;rxq1@0000:00:04.0]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 2. Launch virtio-user1 by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 --no-pci --file-prefix=virtio1 \
-    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net1,queues=2,server=1,mrg_rxbuf=0,in_order=1,queue_size=4096 \
+    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=2,server=1,mrg_rxbuf=0,in_order=1,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
     testpmd>set fwd rxonly
     testpmd>start
@@ -183,17 +192,17 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 4. Launch virtio-user0 and send packets::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 --no-pci --file-prefix=virtio \
-    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net0,queues=2,server=1,mrg_rxbuf=0,in_order=1,queue_size=4096 \
+    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=2,server=1,mrg_rxbuf=0,in_order=1,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
     testpmd>set burst 1
     testpmd>set txpkts 64
-	testpmd>start tx_first 27
-	testpmd>stop
+    testpmd>start tx_first 27
+    testpmd>stop
     testpmd>set burst 32
     testpmd>start tx_first 7
     testpmd>stop
     testpmd>set txpkts 64,256,2000,64,256,2000
-	testpmd>start tx_first 1
+    testpmd>start tx_first 1
     testpmd>stop
 
 5. Start vhost testpmd, check 502 packets and 32128 bytes received by virtio-user1 and 502 packets with 64 length in pdump-virtio-rx.pcap.
@@ -204,14 +213,12 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
     testpmd>clear port stats all
     testpmd>start
 
-7. Quit and relaunch vhost with iova=pa by below command::
+7. Quit and relaunch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;txq1;rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;rxq0;rxq1]' \
-    --iova=pa -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore11@0000:00:04.4]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.0;rxq0@0000:00:04.1;rxq1@0000:00:04.1]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.2;txq1@0000:00:04.2;rxq0@0000:00:04.3;rxq1@0000:00:04.3]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 8. Attach pdump secondary process to primary process by same file-prefix::
 
@@ -220,35 +227,33 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 9. Virtio-user0 send packets::
 
     testpmd>set burst 1
-	testpmd>start tx_first 27
-	testpmd>stop
+    testpmd>start tx_first 27
+    testpmd>stop
     testpmd>set burst 32
     testpmd>start tx_first 7
     testpmd>stop
     testpmd>set txpkts 64,256,2000,64,256,2000
-	testpmd>start tx_first 1
+    testpmd>start tx_first 1
     testpmd>stop
 
 10. Rerun step 5.
 
 Test Case 3: VM2VM split ring vectorized path multi-queues payload check with cbdma enable
 ------------------------------------------------------------------------------------------
-This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user split ring vectorized path
-and multi-queues when vhost uses the asynchronous operations with CBDMA channels. Both iova as VA and PA mode test.
+This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user
+split ring vectorized path and multi-queues when vhost uses the asynchronous operations with CBDMA channels.
 
-1. Launch vhost by below command::
+1. Bind 8 CBDMA devices to vfio-pci, launch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;txq1;rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;rxq0;rxq1]' \
-    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore11@0000:00:04.4,lcore11@0000:00:04.5,lcore11@0000:00:04.6,lcore11@0000:00:04.7]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 0 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.0;rxq0@0000:00:04.0]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq1@0000:00:04.0;rxq0@0000:00:04.0;rxq1@0000:00:04.0]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 2. Launch virtio-user1 by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 --no-pci --file-prefix=virtio1 \
-    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net1,queues=2,server=1,mrg_rxbuf=0,in_order=0,vectorized=1,queue_size=4096 \
+    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=2,server=1,mrg_rxbuf=0,in_order=0,vectorized=1,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
     testpmd>set fwd rxonly
     testpmd>start
@@ -260,9 +265,8 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 4. Launch virtio-user0 and send packets::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 --no-pci --file-prefix=virtio \
-    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net0,queues=2,server=1,mrg_rxbuf=0,in_order=0,,vectorized=1,queue_size=4096 \
+    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=2,server=1,mrg_rxbuf=0,in_order=0,,vectorized=1,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
-
     testpmd>set burst 32
     testpmd>set txpkts 64
     testpmd>start tx_first 7
@@ -280,14 +284,13 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
     testpmd>clear port stats all
     testpmd>start
 
-7. Quit and relaunch vhost with iova=pa by below command::
+7. Quit and relaunch vhost by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;txq1;rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;rxq0;rxq1]' \
-    --iova=pa -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore11@0000:00:04.4,lcore11@0000:00:04.5,lcore11@0000:00:04.6,lcore11@0000:00:04.7]
+    -a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.1;rxq0@0000:00:04.2;rxq1@0000:00:04.3]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.4;txq1@0000:00:04.5;rxq0@0000:00:04.6;rxq1@0000:00:04.7]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 8. Attach pdump secondary process to primary process by same file-prefix::
 
@@ -308,24 +311,21 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 
 Test Case 4: VM2VM split ring inorder mergeable path test non-indirect descriptor with cbdma enable
 ---------------------------------------------------------------------------------------------------
-This case uses testpmd to test the payload is valid and non-indirect descriptor after packets forwarding in vhost-user/virtio-user
-split ring inorder mergeable path and multi-queues when vhost uses the asynchronous operations with CBDMA channels. Both
-iova as VA and PA mode test.
+This case uses testpmd to test the payload is valid and non-indirect descriptor after packets forwarding
+in vhost-user/virtio-user split ring inorder mergeable path and multi-queues when vhost uses the asynchronous
+operations with CBDMA channels. Both iova as VA and PA mode test.
 
-1. Launch testpmd by below command::
+1. Bind 8 CBDMA devices to vfio-pci, launch testpmd by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;txq1;rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;rxq0;rxq1]' \
-    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.0;rxq0@0000:00:04.0]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.0;rxq0@0000:00:04.0;rxq1@0000:00:04.0]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256 --no-flush-rx 
 
 2. Launch virtio-user1 by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 \
-    --no-pci --file-prefix=virtio1 \
-    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net1,queues=2,server=1,mrg_rxbuf=1,in_order=1,queue_size=256 \
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 --no-pci --file-prefix=virtio1 \
+    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=2,server=1,mrg_rxbuf=1,in_order=1,queue_size=256 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256
     testpmd>set fwd rxonly
     testpmd>start
@@ -336,9 +336,8 @@  iova as VA and PA mode test.
 
 4. Launch virtio-user0 and send packets(include 251 small packets and 32 8K packets)::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 \
-    --no-pci --file-prefix=virtio \
-    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net0,queues=2,server=1,mrg_rxbuf=1,in_order=1,queue_size=256 \
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 --no-pci --file-prefix=virtio \
+    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=2,server=1,mrg_rxbuf=1,in_order=1,queue_size=256 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256
     testpmd>set burst 1
     testpmd>set txpkts 64
@@ -354,35 +353,32 @@  iova as VA and PA mode test.
 5. Start vhost, then quit pdump and three testpmd, about split virtqueue inorder mergeable path, it use the non-direct descriptors, the 8k length pkt will occupies 5 ring:2000,2000,2000,2000 will need 4 consequent ring,
 still need one ring put header. So check 504 packets and 48128 bytes received by virtio-user1 and 502 packets with 64 length and 2 packets with 8K length in pdump-virtio-rx.pcap.
 
-6. Relaunch vhost with iova=pa by below command::
+6. Relaunch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;txq1;rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;rxq0;rxq1]' \
-    --iova=pa -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.1;rxq0@0000:00:04.2;rxq1@0000:00:04.3]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.4;txq1@0000:00:04.5;rxq0@0000:00:04.6;rxq1@0000:00:04.7]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256 --no-flush-rx
 
 7. Rerun step 2-5.
 
 Test Case 5: VM2VM split ring mergeable path test indirect descriptor with cbdma enable
 ---------------------------------------------------------------------------------------
-This case uses testpmd to test the payload is valid and indirect descriptor after packets forwarding in vhost-user/virtio-user
-split ring mergeable path and multi-queues when vhost uses the asynchronous operations with CBDMA channels. Both iova as VA and PA mode test.
+This case uses testpmd to test the payload is valid and indirect descriptor after packets
+forwarding in vhost-user/virtio-user split ring mergeable path and multi-queues when vhost
+uses the asynchronous operations with CBDMA channels.
 
-1. Launch testpmd by below command::
+1. Bind 8 CBDMA devices to vfio-pci, launch testpmd by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;rxq0;rxq1]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;txq1;rxq0]' \
-    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;rxq0@0000:00:04.0;rxq1@0000:00:04.0]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.1;txq1@0000:00:04.1;rxq0@0000:00:04.1]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256 --no-flush-rx
 
 2. Launch virtio-user1 by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 --no-pci --file-prefix=virtio1 \
-    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net1,queues=2,server=1,mrg_rxbuf=1,in_order=0,queue_size=256 \
+    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=2,server=1,mrg_rxbuf=1,in_order=0,queue_size=256 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256
     testpmd>set fwd rxonly
     testpmd>start
@@ -393,9 +389,8 @@  split ring mergeable path and multi-queues when vhost uses the asynchronous oper
 
 4. Launch virtio-user0 and send packets(include 251 small packets and 32 8K packets)::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 \
-    --no-pci --file-prefix=virtio \
-    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net0,queues=2,server=1,mrg_rxbuf=1,in_order=0,queue_size=256 \
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 --no-pci --file-prefix=virtio \
+    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=2,server=1,mrg_rxbuf=1,in_order=0,queue_size=256 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256
     testpmd>set burst 1
     testpmd>set txpkts 64
@@ -411,35 +406,31 @@  split ring mergeable path and multi-queues when vhost uses the asynchronous oper
 5. Start vhost, then quit pdump and three testpmd, about split virtqueue mergeable path, it use the indirect descriptors, the 8k length pkt will just occupies one ring.
 So check 512 packets and 112128 bytes received by virtio-user1 and 502 packets with 64 length and 10 packets with 8K length in pdump-virtio-rx.pcap.
 
-6. Quit and relaunch vhost with iova=pa by below command::
+6. Quit and relaunch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;txq1;rxq0;rxq1]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;txq1;rxq0;rxq1]' \
-    --iova=pa -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq0@0000:00:04.1;rxq0@0000:00:04.2;rxq1@0000:00:04.3]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.4;txq0@0000:00:04.5;rxq0@0000:00:04.6;rxq1@0000:00:04.7]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256 --no-flush-rx
 
 7. Rerun step 2-5.
 
 Test Case 6: VM2VM packed ring non-mergeable path multi-queues payload check with cbdma enable
 ----------------------------------------------------------------------------------------------
-This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user packed ring non-mergeable path
-and multi-queues when vhost uses the asynchronous operations with CBDMA channels. Both iova as VA and PA mode test.
+This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user
+packed ring non-mergeable path and multi-queues when vhost uses the asynchronous operations with CBDMA channels.
 
-1. Launch vhost by below command::
+1. Bind 2 CBDMA devices to vfio-pci, launch vhost by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;txq1;rxq0;rxq1]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;txq1;rxq0;rxq1]' \
-    --iova=va -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1]
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.1;rxq0@0000:00:04.0;rxq1@0000:00:04.1]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.1;rxq0@0000:00:04.0;rxq1@0000:00:04.1]' \
+    --iova=va -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 2. Launch virtio-user1 by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 \
-    --no-pci --file-prefix=virtio1 \
-    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=0,queue_size=4096 \
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 --no-pci --file-prefix=virtio1 \
+    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=0,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
     testpmd>set fwd rxonly
     testpmd>start
@@ -450,11 +441,9 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 
 4. Launch virtio-user0 and send packets::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 \
-    --no-pci --file-prefix=virtio \
-    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=0,queue_size=4096 \
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 --no-pci --file-prefix=virtio \
+    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=0,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
-
     testpmd>set burst 32
     testpmd>set txpkts 64
     testpmd>start tx_first 7
@@ -475,10 +464,9 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 7. Quit and relaunch vhost with iova=pa by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;rxq0;rxq1]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;txq1;rxq0]' \
-    --iova=pa -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1]
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;rxq0@0000:00:04.0;rxq1@0000:00:04.1]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.1;rxq0@0000:00:04.0]' \
+    --iova=va -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 8. Attach pdump secondary process to primary process by same file-prefix::
 
@@ -499,22 +487,21 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 
 Test Case 7: VM2VM packed ring mergeable path multi-queues payload check with cbdma enable
 ------------------------------------------------------------------------------------------
-This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user packed ring mergeable path
-and multi-queues when vhost uses the asynchronous operations with CBDMA channels. Both iova as VA and PA mode test.
+This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user
+packed ring mergeable path and multi-queues when vhost uses the asynchronous operations with CBDMA channels.
 
-1. Launch vhost by below command::
+1. Bind 8 CBDMA devices to vfio-pci, launch vhost by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;rxq0;rxq1]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;txq1;rxq0]' \
-    --iova=va -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0]
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;rxq0@0000:00:04.0;rxq1@0000:00:04.0]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.0;rxq0@0000:00:04.0]' \
+    --iova=va -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 2. Launch virtio-user1 by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 \
     --no-pci --file-prefix=virtio1 \
-    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=1,in_order=0,queue_size=4096 \
+    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=1,in_order=0,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
     testpmd>set fwd rxonly
     testpmd>start
@@ -525,9 +512,8 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 
 4. Launch virtio-user0 and send packets::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 \
-    --no-pci --file-prefix=virtio \
-    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=1,in_order=0,queue_size=4096 \
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 --no-pci --file-prefix=virtio \
+    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=1,in_order=0,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
     testpmd>set burst 1
     testpmd>set txpkts 64,256,2000,64,256,2000
@@ -546,13 +532,12 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
     testpmd>clear port stats all
     testpmd>start
 
-7. Quit and relaunch vhost with iova=pa by below command::
+7. Quit and relaunch vhost by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;txq1;rxq0;rxq1]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;txq1;rxq0;rxq1]' \
-    --iova=pa -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0]
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq0@0000:00:04.1;rxq0@0000:00:04.2;rxq1@0000:00:04.3]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.4;txq0@0000:00:04.5;rxq0@0000:00:04.6;rxq1@0000:00:04.7]' \
+    --iova=va -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 8. Attach pdump secondary process to primary process by same file-prefix::
 
@@ -573,23 +558,20 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 
 Test Case 8: VM2VM packed ring inorder mergeable path multi-queues payload check with cbdma enable
 --------------------------------------------------------------------------------------------------
-This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user packed ring inorder mergeable path
-and multi-queues when vhost uses the asynchronous operations with CBDMA channels. Both iova as VA and PA mode test.
+This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user
+packed ring inorder mergeable path and multi-queues when vhost uses the asynchronous operations with CBDMA channels.
 
-1. Launch vhost by below command::
+1. Bind 4 CBDMA devices to vfio-pci, launch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;rxq0;rxq1]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;txq1;rxq0]' \
-    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore11@0000:00:04.4]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;rxq0@0000:00:04.0;rxq1@0000:00:04.0]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.0;rxq0@0000:00:04.0]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 2. Launch virtio-user1 by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 \
-    --no-pci --file-prefix=virtio1 \
-    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=1,in_order=1,queue_size=4096 \
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 --no-pci --file-prefix=virtio1 \
+    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=1,in_order=1,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
     testpmd>set fwd rxonly
     testpmd>start
@@ -600,9 +582,8 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 
 4. Launch virtio-user0 and send 8k length packets::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 \
-    --no-pci --file-prefix=virtio \
-    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=1,in_order=1,queue_size=4096 \
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 --no-pci --file-prefix=virtio \
+    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=1,in_order=1,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
     testpmd>set burst 1
     testpmd>set txpkts 64,256,2000,64,256,2000
@@ -621,14 +602,12 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
     testpmd>clear port stats all
     testpmd>start
 
-7. Quit and relaunch vhost with iova=pa by below command::
+7. Quit and relaunch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;rxq0;rxq1]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;txq1;rxq0]' \
-    --iova=pa -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore11@0000:00:04.4]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq0@0000:00:04.1;rxq0@0000:00:04.2;rxq1@0000:00:04.3]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq0@0000:00:04.1;rxq0@0000:00:04.2;rxq1@0000:00:04.3]' \
+    --iova=pa -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 8. Attach pdump secondary process to primary process by same file-prefix::
 
@@ -649,23 +628,21 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 
 Test Case 9: VM2VM packed ring inorder non-mergeable path multi-queues payload check with cbdma enable
 ------------------------------------------------------------------------------------------------------
-This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user packed ring inorder non-mergeable path
-and multi-queues when vhost uses the asynchronous operations with CBDMA channels. Both iova as VA and PA mode test.
+This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user
+packed ring inorder non-mergeable path and multi-queues when vhost uses the asynchronous operations with CBDMA channels.
 
-1. Launch vhost by below command::
+1. Bind 4 CBDMA devices to vfio-pci, launch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq1;rxq1]' \
-    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore11@0000:00:04.4,lcore11@0000:00:04.5,lcore11@0000:00:04.6,lcore11@0000:00:04.7]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;rxq0@0000:00:04.1]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq1@0000:00:04.0;rxq1@0000:00:04.1]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 2. Launch virtio-user1 by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 \
     --no-pci --file-prefix=virtio1 \
-    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=1,queue_size=4096 \
+    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=1,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
     testpmd>set fwd rxonly
     testpmd>start
@@ -676,11 +653,9 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 
 4. Launch virtio-user0 and send 8k length packets::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 \
-    --no-pci --file-prefix=virtio \
-    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=1,queue_size=4096 \
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 --no-pci --file-prefix=virtio \
+    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=1,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
-
     testpmd>set burst 32
     testpmd>set txpkts 64
     testpmd>start tx_first 7
@@ -698,14 +673,12 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
     testpmd>clear port stats all
     testpmd>start
 
-7. Quit and relaunch vhost with iova=pa by below command::
+7. Quit and relaunch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq1;rxq1]' \
-    --iova=pa -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore11@0000:00:04.4,lcore11@0000:00:04.5,lcore11@0000:00:04.6,lcore11@0000:00:04.7]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.3 -a 0000:00:04.4 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq0@0000:00:04.1;rxq0@0000:00:04.2;rxq1@0000:00:04.3]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq0@0000:00:04.1;rxq0@0000:00:04.2;rxq1@0000:00:04.3]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 8. Attach pdump secondary process to primary process by same file-prefix::
 
@@ -726,21 +699,20 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 
 Test Case 10: VM2VM packed ring vectorized-rx path multi-queues payload check with cbdma enable
 -----------------------------------------------------------------------------------------------
-This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user packed ring vectorized-rx path
-and multi-queues when vhost uses the asynchronous operations with CBDMA channels. Both iova as VA and PA mode test.
+This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user
+packed ring vectorized-rx path and multi-queues when vhost uses the asynchronous operations with CBDMA channels.
 
-1. Launch vhost by below command::
+1. Bind 4 CBDMA devices to vfio-pci, launch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq1;rxq1]' \
-    --iova=va -- -i --nb-cores=2 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore12@0000:00:04.4,lcore12@0000:00:04.5,lcore12@0000:00:04.6,lcore12@0000:00:04.7]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;rxq0@0000:00:04.0]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq1@0000:00:04.0;rxq1@0000:00:04.0]' \
+    --iova=va -- -i --nb-cores=2 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 2. Launch virtio-user1 by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 --no-pci --file-prefix=virtio1 --force-max-simd-bitwidth=512 \
-    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=1,vectorized=1,queue_size=4096 \
+    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=1,vectorized=1,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
     testpmd>set fwd rxonly
     testpmd>start
@@ -752,9 +724,8 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 4. Launch virtio-user0 and send 8k length packets::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 --force-max-simd-bitwidth=512 --no-pci --file-prefix=virtio \
-    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=1,vectorized=1,queue_size=4096 \
+    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=1,vectorized=1,queue_size=4096 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096
-
     testpmd>set burst 32
     testpmd>set txpkts 64
     testpmd>start tx_first 7
@@ -772,14 +743,12 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
     testpmd>clear port stats all
     testpmd>start
 
-7. Quit and relaunch vhost with iova=pa by below command::
+7. Quit and relaunch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq1;rxq1]' \
-    --iova=pa -- -i --nb-cores=2 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore12@0000:00:04.4,lcore12@0000:00:04.5,lcore12@0000:00:04.6,lcore12@0000:00:04.7]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq0@0000:00:04.1;rxq0@0000:00:04.2;rxq1@0000:00:04.3]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq0@0000:00:04.1;rxq0@0000:00:04.2;rxq1@0000:00:04.3]' \
+    --iova=pa -- -i --nb-cores=2 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 8. Attach pdump secondary process to primary process by same file-prefix::
 
@@ -800,22 +769,20 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 
 Test Case 11: VM2VM packed ring vectorized path multi-queues payload check test with ring size is not power of 2 with cbdma enable
 ----------------------------------------------------------------------------------------------------------------------------------
-This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user packed ring vectorized path with ring size is not power of 2
-and multi-queues when vhost uses the asynchronous operations with CBDMA channels. Both iova as VA and PA mode test.
+This case uses testpmd to test the payload is valid after packets forwarding in vhost-user/virtio-user packed ring vectorized path
+with ring size is not power of 2 and multi-queues when vhost uses the asynchronous operations with CBDMA channels.
 
-1. Launch vhost by below command::
+1. Bind 8 CBDMA devices to vfio-pci, launch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[txq0;txq1;rxq0;rxq1]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;txq1;rxq0;rxq1]' \
-    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore11@0000:00:04.4,lcore11@0000:00:04.5,lcore11@0000:00:04.6,lcore11@0000:00:04.7]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.0;rxq0@0000:00:04.0;rxq1@0000:00:04.0]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.0;rxq0@0000:00:04.0;rxq1@0000:00:04.0]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 2. Launch virtio-user1 by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 --force-max-simd-bitwidth=512  --no-pci --file-prefix=virtio1 \
-    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=1,vectorized=1,queue_size=4097 \
+    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=1,vectorized=1,queue_size=4097 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4097 --rxd=4097
     testpmd>set fwd rxonly
     testpmd>start
@@ -827,9 +794,8 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 4. Launch virtio-user0 and send 8k length packets::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 --force-max-simd-bitwidth=512 --no-pci --file-prefix=virtio \
-    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=1,vectorized=1,queue_size=4097 \
+    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=0,in_order=1,vectorized=1,queue_size=4097 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4097 --rxd=4097
-
     testpmd>set burst 32
     testpmd>set txpkts 64
     testpmd>start tx_first 7
@@ -847,14 +813,12 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
     testpmd>clear port stats all
     testpmd>start
 
-7. Quit and relaunch vhost with iova=pa by below command::
+7. Quit and relaunch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq1]' \
-    --iova=pa -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore12@0000:00:04.3,lcore12@0000:00:04.4,lcore12@0000:00:04.5,lcore12@0000:00:04.6,lcore12@0000:00:04.7]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq1@0000:00:04.1;rxq0@0000:00:04.0;rxq1@0000:00:04.1]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.2;txq1@0000:00:04.3;rxq0@0000:00:04.2;rxq1@0000:00:04.3]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=4096 --rxd=4096 --no-flush-rx
 
 8. Attach pdump secondary process to primary process by same file-prefix::
 
@@ -876,21 +840,19 @@  and multi-queues when vhost uses the asynchronous operations with CBDMA channels
 Test Case 12: VM2VM packed ring vectorized-tx path multi-queues test indirect descriptor and payload check with cbdma enable
 ----------------------------------------------------------------------------------------------------------------------------
 This case uses testpmd to test the payload is valid and indirect descriptor after packets forwarding in vhost-user/virtio-user
-packed ring vectorized-tx path and multi-queues when vhost uses the asynchronous operations with CBDMA channels. Both iova as VA and PA mode test.
+packed ring vectorized-tx path and multi-queues when vhost uses the asynchronous operations with CBDMA channels.
 
-1. Launch vhost by below command::
+1. Bind 4 CBDMA devices to vfio-pci, launch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq1]' \
-    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore11@0000:00:04.4,lcore11@0000:00:04.5,lcore11@0000:00:04.6,lcore11@0000:00:04.7]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[rxq0@0000:00:04.0]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq1@0000:00:04.0]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256 --no-flush-rx
 
 2. Launch virtio-user1 by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 --no-pci --file-prefix=virtio1 --force-max-simd-bitwidth=512 \
-    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=1,in_order=1,vectorized=1,queue_size=256 \
+    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=2,server=1,packed_vq=1,mrg_rxbuf=1,in_order=1,vectorized=1,queue_size=256 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256
     testpmd>set fwd rxonly
     testpmd>start
@@ -902,9 +864,8 @@  packed ring vectorized-tx path and multi-queues when vhost uses the asynchronous
 4. Launch virtio-user0 and send 8k length packets::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 --force-max-simd-bitwidth=512 --no-pci --file-prefix=virtio \
-    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=1,in_order=1,vectorized=1,queue_size=256 \
+    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=2,server=1,packed_vq=1,mrg_rxbuf=1,in_order=1,vectorized=1,queue_size=256 \
     -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256
-
     testpmd>set burst 1
     testpmd>set txpkts 64
     testpmd>start tx_first 27
@@ -919,35 +880,31 @@  packed ring vectorized-tx path and multi-queues when vhost uses the asynchronous
 5. Start vhost, then quit pdump and three testpmd, about packed virtqueue vectorized-tx path, it use the indirect descriptors, the 8k length pkt will just occupies one ring.
 So check 512 packets and 112128 bytes received by virtio-user1 and 502 packets with 64 length and 10 packets with 8K length in pdump-virtio-rx.pcap.
 
-6. Quit and relaunch vhost with iova=pa by below command::
+6. Quit and relaunch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=2,client=1,dmas=[rxq0;rxq1]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=2,client=1,dmas=[txq0;txq1]' \
-    --iova=pa -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore11@0000:00:04.4,lcore11@0000:00:04.5,lcore11@0000:00:04.6,lcore11@0000:00:04.7]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq0@0000:00:04.1;rxq0@0000:00:04.2;rxq1@0000:00:04.3]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=2,client=1,dmas=[txq0@0000:00:04.0;txq0@0000:00:04.1;rxq0@0000:00:04.2;rxq1@0000:00:04.3]' \
+    --iova=va -- -i --nb-cores=1 --rxq=2 --txq=2 --txd=256 --rxd=256 --no-flush-rx
 
 7. Rerun step 2-5.
 
 Test Case 13: VM2VM packed ring vectorized-tx path test batch processing with cbdma enable
 ------------------------------------------------------------------------------------------
-This case uses testpmd to test that one packet can forwarding in vhost-user/virtio-user packed ring vectorized-tx path
-when vhost uses the asynchronous operations with CBDMA channels.
+This case uses testpmd to test that one packet can forwarding in vhost-user/virtio-user
+packed ring vectorized-tx path when vhost uses the asynchronous operations with CBDMA channels.
 
-1. Launch vhost by below command::
+1. Bind 1 CBDMA devices to vfio-pci, launch vhost by below command::
 
-    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 \
-	-a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -a 0000:00:04.4 -a 0000:00:04.5 -a 0000:00:04.6 -a 0000:00:04.7 \
-    --vdev 'eth_vhost0,iface=/root/dpdk/vhost-net0,queues=1,client=1,dmas=[txq0;rxq0]' \
-	--vdev 'eth_vhost1,iface=/root/dpdk/vhost-net1,queues=1,client=1,dmas=[txq0;rxq0]' \
-    --iova=va -- -i --nb-cores=1 --txd=256 --rxd=256 --no-flush-rx \
-    --lcore-dma=[lcore11@0000:00:04.0,lcore11@0000:00:04.1,lcore11@0000:00:04.2,lcore11@0000:00:04.3,lcore11@0000:00:04.4,lcore11@0000:00:04.5,lcore11@0000:00:04.6,lcore11@0000:00:04.7]
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 10-18 -n 4 -a 0000:00:04.0 \
+    --vdev 'eth_vhost0,iface=./vhost-net0,queues=1,client=1,dmas=[txq0@0000:00:04.0;rxq0@0000:00:04.0]' \
+    --vdev 'eth_vhost1,iface=./vhost-net1,queues=1,client=1,dmas=[txq0@0000:00:04.0;rxq0@0000:00:04.0]' \
+    --iova=va -- -i --nb-cores=1 --txd=256 --rxd=256 --no-flush-rx
 
 2. Launch virtio-user1 by below command::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 7-8 --no-pci --file-prefix=virtio1 --force-max-simd-bitwidth=512 \
-    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net1,queues=1,server=1,packed_vq=1,mrg_rxbuf=1,in_order=1,vectorized=1,queue_size=256 \
+    --vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=1,server=1,packed_vq=1,mrg_rxbuf=1,in_order=1,vectorized=1,queue_size=256 \
     -- -i --nb-cores=1 --txd=256 --rxd=256
     testpmd>set fwd rxonly
     testpmd>start
@@ -959,7 +916,7 @@  when vhost uses the asynchronous operations with CBDMA channels.
 4. Launch virtio-user0 and send 1 packet::
 
     ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -n 4 -l 5-6 --force-max-simd-bitwidth=512 --no-pci --file-prefix=virtio \
-    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=/root/dpdk/vhost-net0,queues=1,server=1,packed_vq=1,mrg_rxbuf=1,in_order=1,vectorized=1,queue_size=256 \
+    --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=1,server=1,packed_vq=1,mrg_rxbuf=1,in_order=1,vectorized=1,queue_size=256 \
     -- -i --nb-cores=1 --txd=256 --rxd=256
     testpmd>set burst 1
     testpmd>start tx_first 1