test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts][PATCH V1] test_plans/vswitch_sample_cbdma_test_plan: fix wrong DMA parameter
@ 2022-10-11  3:19 Wei Ling
  2022-10-21  2:16 ` He, Xingguang
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Wei Ling @ 2022-10-11  3:19 UTC (permalink / raw)
  To: dts; +Cc: Wei Ling

Fix wrong DMA parameter when launch dpdk-vhost.

Signed-off-by: Wei Ling <weix.ling@intel.com>
---
 test_plans/vswitch_sample_cbdma_test_plan.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/test_plans/vswitch_sample_cbdma_test_plan.rst b/test_plans/vswitch_sample_cbdma_test_plan.rst
index c7b95753..6d1b76c9 100644
--- a/test_plans/vswitch_sample_cbdma_test_plan.rst
+++ b/test_plans/vswitch_sample_cbdma_test_plan.rst
@@ -101,7 +101,7 @@ This case tests that the imix packets can forward normally with two VMs in PVP t
 6. Quit and relaunch dpdk-vhost by below command::
 
 	./x86_64-native-linuxapp-gcc/examples/dpdk-vhost -l 26-28 -n 4 -a 0000:af:00.0 -a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3  -- \
-	-p 0x1 --mergeable 1 --vm2vm 1  --stats 1 --socket-file /root/dpdk/vhost-net0 --socket-file /root/dpdk/vhost-net1 --dmas [txd0@0000:00:01.0,rxd1@0000:00:01.1] --client--total-num-mbufs 600000
+	-p 0x1 --mergeable 1 --vm2vm 1  --stats 1 --socket-file /root/dpdk/vhost-net0 --socket-file /root/dpdk/vhost-net1 --dmas [txd0@0000:00:04.0,rxd1@0000:00:04.1] --client--total-num-mbufs 600000
 
 7. Start packets from two virtio-user side individually to let vswitch know the mac addr::
 
@@ -172,7 +172,7 @@ This case checks that the split ring with CBDMA channel can work stably when the
 2. On host, launch dpdk-vhost by below command::
 
 	./x86_64-native-linuxapp-gcc/examples/dpdk-vhost -l 26-28 -n 4 -a 0000:af:00.0 -a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -- -p 0x1 --mergeable 1 --vm2vm 1  \
-	--socket-file /root/dpdk/vhost-net0 --socket-file /root/dpdk/vhost-net1 --dmas [txd0@0000:00:04.0,rxd0@0000:00:04.1,txd1@0000:00:01.2,rxd1@0000:00:01.3] --client --total-num-mbufs 600000
+	--socket-file /root/dpdk/vhost-net0 --socket-file /root/dpdk/vhost-net1 --dmas [txd0@0000:00:04.0,rxd0@0000:00:04.1,txd1@0000:00:04.2,rxd1@0000:00:04.3] --client --total-num-mbufs 600000
 
 3. Start VM0 with qemu::
 
@@ -245,7 +245,7 @@ This case checks that the split ring with CBDMA channel can work stably when the
 9. Quit and relaunch dpdk-vhost with below command::
 
 	./x86_64-native-linuxapp-gcc/examples/dpdk-vhost -l 26-28 -n 4 -a 0000:af:00.0 -a 0000:00:04.0 -a 0000:00:04.1 -a 0000:00:04.2 -a 0000:00:04.3 -- -p 0x1 --mergeable 1 --vm2vm 1  \
-	--socket-file /root/dpdk/vhost-net0 --socket-file /root/dpdk/vhost-net1 --dmas [txd0@0000:00:04.0,rxd1@0000:00:01.3] --client --total-num-mbufs 600000
+	--socket-file /root/dpdk/vhost-net0 --socket-file /root/dpdk/vhost-net1 --dmas [txd0@0000:00:04.0,rxd1@0000:00:04.3] --client --total-num-mbufs 600000
 
 10. Rerun step 6-7,check vhost can stable work and get expected throughput.
 
-- 
2.25.1


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

* RE: [dts][PATCH V1] test_plans/vswitch_sample_cbdma_test_plan: fix wrong DMA parameter
  2022-10-11  3:19 [dts][PATCH V1] test_plans/vswitch_sample_cbdma_test_plan: fix wrong DMA parameter Wei Ling
@ 2022-10-21  2:16 ` He, Xingguang
  2022-10-21  6:36 ` Yuan, DukaiX
  2022-11-18  7:55 ` lijuan.tu
  2 siblings, 0 replies; 4+ messages in thread
From: He, Xingguang @ 2022-10-21  2:16 UTC (permalink / raw)
  To: Ling, WeiX, dts; +Cc: Ling, WeiX

> -----Original Message-----
> From: Wei Ling <weix.ling@intel.com>
> Sent: Tuesday, October 11, 2022 11:20 AM
> To: dts@dpdk.org
> Cc: Ling, WeiX <weix.ling@intel.com>
> Subject: [dts][PATCH V1] test_plans/vswitch_sample_cbdma_test_plan: fix
> wrong DMA parameter
> 
> Fix wrong DMA parameter when launch dpdk-vhost.
> 
> Signed-off-by: Wei Ling <weix.ling@intel.com>
> ---
Acked-by: Xingguang He<xingguang.he@intel.com>

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

* RE: [dts][PATCH V1] test_plans/vswitch_sample_cbdma_test_plan: fix wrong DMA parameter
  2022-10-11  3:19 [dts][PATCH V1] test_plans/vswitch_sample_cbdma_test_plan: fix wrong DMA parameter Wei Ling
  2022-10-21  2:16 ` He, Xingguang
@ 2022-10-21  6:36 ` Yuan, DukaiX
  2022-11-18  7:55 ` lijuan.tu
  2 siblings, 0 replies; 4+ messages in thread
From: Yuan, DukaiX @ 2022-10-21  6:36 UTC (permalink / raw)
  To: Ling, WeiX, dts; +Cc: Ling, WeiX

-----Original Message-----
From: Wei Ling <weix.ling@intel.com> 
Sent: 2022年10月11日 11:20
To: dts@dpdk.org
Cc: Ling, WeiX <weix.ling@intel.com>
Subject: [dts][PATCH V1] test_plans/vswitch_sample_cbdma_test_plan: fix wrong DMA parameter

Fix wrong DMA parameter when launch dpdk-vhost.

Signed-off-by: Wei Ling <weix.ling@intel.com>
---
Tested-by: Dukai Yuan<dukaix.yuan@intel.com>

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

* [dts][PATCH V1] test_plans/vswitch_sample_cbdma_test_plan: fix wrong DMA parameter
  2022-10-11  3:19 [dts][PATCH V1] test_plans/vswitch_sample_cbdma_test_plan: fix wrong DMA parameter Wei Ling
  2022-10-21  2:16 ` He, Xingguang
  2022-10-21  6:36 ` Yuan, DukaiX
@ 2022-11-18  7:55 ` lijuan.tu
  2 siblings, 0 replies; 4+ messages in thread
From: lijuan.tu @ 2022-11-18  7:55 UTC (permalink / raw)
  To: dts, Wei Ling; +Cc: Wei Ling

On Mon, 10 Oct 2022 23:19:46 -0400, Wei Ling <weix.ling@intel.com> wrote:
> Fix wrong DMA parameter when launch dpdk-vhost.
> 
> Signed-off-by: Wei Ling <weix.ling@intel.com>


Applied, thanks

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

end of thread, other threads:[~2022-11-18  7:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-11  3:19 [dts][PATCH V1] test_plans/vswitch_sample_cbdma_test_plan: fix wrong DMA parameter Wei Ling
2022-10-21  2:16 ` He, Xingguang
2022-10-21  6:36 ` Yuan, DukaiX
2022-11-18  7:55 ` lijuan.tu

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